mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-14 17:06:07 +00:00
11 lines
101 B
C++
11 lines
101 B
C++
|
|
struct Foo {
|
|
Foo(int);
|
|
~Foo();
|
|
};
|
|
void foo() {
|
|
struct {
|
|
Foo name;
|
|
} Int[] = { 1 };
|
|
}
|