1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

This bug is not fixed, but will be in the future eventually

llvm-svn: 8799
This commit is contained in:
Chris Lattner 2003-09-30 21:31:25 +00:00
parent 4c63db748c
commit 7682227bd6

View File

@ -0,0 +1,10 @@
// Test with an opaque type
struct C;
C &foo();
void foox() {
for (; ; foo());
}