mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
10 lines
92 B
C++
10 lines
92 B
C++
|
|
||
|
struct Foo { int X; };
|
||
|
|
||
|
void bar() {}
|
||
|
|
||
|
int main() {
|
||
|
Foo X;
|
||
|
X = ({ bar(); Foo(); });
|
||
|
}
|