mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
16 lines
153 B
C++
16 lines
153 B
C++
// RUN: %clang_cc1 -emit-llvm-only %s
|
|
|
|
struct A {
|
|
A(const char *s){}
|
|
};
|
|
|
|
struct B {
|
|
A a;
|
|
|
|
B() : a("test") { }
|
|
};
|
|
|
|
void f() {
|
|
A a("test");
|
|
}
|
|
|