blob: 40c9c87ae1e093be9de5c1e44a1caca82af84df3 [file] [log] [blame]
Tanya Lattnerd9a3ceb2004-11-06 22:29:57 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner1656d322003-09-30 21:29:27 +00003struct C {};
4
5C &foo();
6
7void foox() {
8 for (; ; foo());
9}
10