mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
10 lines
91 B
C++
10 lines
91 B
C++
|
|
||
|
struct Foo {
|
||
|
Foo(int);
|
||
|
};
|
||
|
void foo() {
|
||
|
struct {
|
||
|
Foo name;
|
||
|
} Int[] = { 1 };
|
||
|
}
|