freebsd-dev/test/SemaCXX/cast-explicit-ctor.cpp
2010-01-01 10:34:51 +00:00

7 lines
125 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
struct B { explicit B(bool); };
void f() {
(void)(B)true;
(void)B(true);
}