blob: 5cf279f62a185a4e422be88c27a1c0b8122a90a0 [file] [log] [blame]
Eli Friedman27a9b722009-12-19 00:20:10 +00001// RUN: %clang_cc1 %s -emit-llvm-only -verify
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Eli Friedman27a9b722009-12-19 00:20:10 +00003
4struct A {};
5struct B : A {};
6void a(const A& x = B());
7void b() { a(); }