clang-1/test/SemaCXX/cast-explicit-ctor.cpp

7 строки
123 B
C++

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