brintos

brintos / llvm-project-archived public Read only

0
0
Text · 180 B · 4d0cf35 Raw
11 lines · cpp
1// RUN: %clang_cc1 -std=c++98 -verify %s2// RUN: %clang_cc1 -std=c++1z -verify %s3 4// expected-no-diagnostics5 6struct A { A(); A(int); };7void f() {8  const A a;9  true ? a : 0;10}11