blob: 63f62f28dbf10a334561a999c1be9a320fe27b37 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
Tanya Lattnerd13e0ae2004-11-06 22:29:57 +00002
Chris Lattnerb51a2562003-09-30 21:29:27 +00003struct C {};
4
5C &foo();
6
7void foox() {
8 for (; ; foo());
9}
10