blob: 4d0cf3538cf05bc26eaab240c75e13ea0bdbb813 [file] [log] [blame]
// RUN: %clang_cc1 -std=c++98 -verify %s
// RUN: %clang_cc1 -std=c++1z -verify %s
// expected-no-diagnostics
struct A { A(); A(int); };
void f() {
const A a;
true ? a : 0;
}