1// RUN: %clang_cc1 %s -emit-llvm-only -verify
2
3struct A {};
4struct B : A {};
5void a(const A& x = B());
6void b() { a(); }
7