brintos

brintos / llvm-project-archived public Read only

0
0
Text · 179 B · 21591d1 Raw
12 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4bool a = true;5bool b = false;6 7namespace pr34273 {8  char c = "clang"[true];9  char d = true["clang"];10}11 12