mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
9 lines
61 B
C++
9 lines
61 B
C++
|
struct C {};
|
||
|
|
||
|
C &foo();
|
||
|
|
||
|
void foox() {
|
||
|
for (; ; foo());
|
||
|
}
|
||
|
|