Clang Project

clang_source_code/test/Parser/cxx-bool.cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2// expected-no-diagnostics
3
4bool a = true;
5bool b = false;
6
7namespace pr34273 {
8  char c = "clang"[true];
9  char d = true["clang"];
10}
11
12