blob: 62134ae658dbfa32c66c2be2411ed76a678ce91d [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
struct B { explicit B(bool); };
void f() {
(void)(B)true;
(void)B(true);
}