blob: acce962b1953f665a78ae0dcccd848e6be29d81e [file] [log] [blame]
Eli Friedman27a9b722009-12-19 00:20:10 +00001// RUN: %clang_cc1 %s -emit-llvm-only -verify
2
3struct A {};
4struct B : A {};
5void a(const A& x = B());
6void b() { a(); }