mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
9 lines
61 B
C++
9 lines
61 B
C++
|
struct C {};
|
||
|
|
||
|
C &foo();
|
||
|
|
||
|
void foox() {
|
||
|
for (; ; foo());
|
||
|
}
|
||
|
|