blob: 1064758635d146a6f8ebd2a17b0bc69360899331 [file] [log] [blame]
Anders Carlsson83b534c2009-08-28 16:22:20 +00001// RUN: clang-cc -fsyntax-only -verify %s
2struct B { B(bool); };
3void f() {
4 (void)(B)true;
5 (void)B(true);
6}