brintos

brintos / llvm-project-archived public Read only

0
0
Text · 153 B · 797a1ba Raw
17 lines · cpp
1// RUN: %clang_cc1 -emit-llvm-only %s2 3struct A {4  A(const char *s){}5};6 7struct B {8  A a;9  10  B() : a("test") { }11};12 13void f() {14    A a("test");15}16 17