mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-17 22:26:05 +00:00
10 lines
91 B
C++
10 lines
91 B
C++
|
|
struct Foo {
|
|
Foo(int);
|
|
};
|
|
void foo() {
|
|
struct {
|
|
Foo name;
|
|
} Int[] = { 1 };
|
|
}
|