brintos

brintos / llvm-project-archived public Read only

0
0
Text · 173 B · c0880d5 Raw
13 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3struct B { B(void* = 0); };4 5struct A {6  A(B b = B()) { }7};8 9void f() {10  (void)B();11  (void)A();12}13