xref: /aosp_15_r20/external/clang/test/CodeGenCXX/reference-bind-default-argument.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 %s -emit-llvm-only -verify
2 // expected-no-diagnostics
3 
4 struct A {};
5 struct B : A {};
6 void a(const A& x = B());
b()7 void b() { a(); }
8