blob: e07eb425d2869f101b909e20e038638ce751ac9e [file] [log] [blame]
Tanya Lattnerd9a3ceb2004-11-06 22:29:57 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner56332992003-09-30 21:31:25 +00003// Test with an opaque type
4
5struct C;
6
7C &foo();
8
9void foox() {
10 for (; ; foo());
11}
12