blob: 41d2fa2fbf2c75839c3a4f978787b8bb2eaa9e58 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Anders Carlssonfaccd722009-08-28 16:57:08 +00003struct B { explicit B(bool); };
Anders Carlsson83b534c2009-08-28 16:22:20 +00004void f() {
5 (void)(B)true;
6 (void)B(true);
7}