Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 struct B { B(void* = 0); };
      3 
      4 struct A {
      5   A(B b = B()) { }
      6 };
      7 
      8 void f() {
      9   (void)B();
     10   (void)A();
     11 }
     12