blob: c0880d507e43c96add3c33f0cf3722fdede4a70b [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbsc6e68da2012-10-19 12:44:48 +00002// expected-no-diagnostics
Anders Carlsson574315a2009-08-27 05:08:22 +00003struct B { B(void* = 0); };
4
5struct A {
6 A(B b = B()) { }
7};
8
9void f() {
10 (void)B();
11 (void)A();
12}