• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 
4 bool a = true;
5 bool b = false;
6 
7 namespace pr34273 {
8   char c = "clang"[true];
9   char d = true["clang"];
10 }
11 
12