Clang Project

clang_source_code/test/CXX/expr/expr.cond/p4.cpp
1// RUN: %clang_cc1 -std=c++98 -verify %s
2// RUN: %clang_cc1 -std=c++1z -verify %s
3
4// expected-no-diagnostics
5
6struct A { A(); A(int); };
7void f() {
8  const A a;
9  true ? a : 0;
10}
11