aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-09-30-ForIncrementExprBug2.cpp
blob: 8e3049c2438fad6d87ca5b847c3a9c179b1c7bef (plain)
1
2
3
4
5
6
7
8
9
10
// Test with an opaque type

struct C;

C &foo();

void foox() {
  for (; ; foo());
}