1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 struct B { B(void* = 0); };
4 
5 struct A {
AA6   A(B b = B()) { }
7 };
8 
f()9 void f() {
10   (void)B();
11   (void)A();
12 }
13