brintos

brintos / llvm-project-archived public Read only

0
0
Text · 148 B · 5cf279f Raw
8 lines · cpp
1// RUN: %clang_cc1 %s -emit-llvm-only -verify2// expected-no-diagnostics3 4struct A {};5struct B : A {};6void a(const A& x = B());7void b() { a(); }8