mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-16 11:36:07 +00:00
9 lines
61 B
C++
9 lines
61 B
C++
struct C {};
|
|
|
|
C &foo();
|
|
|
|
void foox() {
|
|
for (; ; foo());
|
|
}
|
|
|