• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 struct B { explicit B(bool); };
f()3 void f() {
4   (void)(B)true;
5   (void)B(true);
6 }
7