mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-06 12:16:59 +00:00
4c63db748c
llvm-svn: 8798
9 lines
61 B
C++
9 lines
61 B
C++
struct C {};
|
|
|
|
C &foo();
|
|
|
|
void foox() {
|
|
for (; ; foo());
|
|
}
|
|
|