blob: a1eee71f52c523c93d7484be4d75b508b378c828 [file] [log] [blame]
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
// Test with an opaque type
struct C;
C &foo();
void foox() {
for (; ; foo());
}