blob: 3ab7bf4eb13d6c6d0bcc9801002e80d0b078311e [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
struct B { B(void* = 0); };
struct A {
A(B b = B()) { }
};
void f() {
(void)B();
(void)A();
}