blob: 3ab7bf4eb13d6c6d0bcc9801002e80d0b078311e [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Anders Carlssone7624a72009-08-27 05:08:22 +00002struct B { B(void* = 0); };
3
4struct A {
5 A(B b = B()) { }
6};
7
8void f() {
9 (void)B();
10 (void)A();
11}