OSDN Git Service

* call.c (convert_like_real): Give "initializing argument of"
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / expr / for2.C
1 // { dg-do compile }
2 // PR c++/17661
3 // We used to try to create a temprary for the condition
4 // expression in the for which was wrong.
5
6
7 struct C
8 {
9   C (const C &x);
10 };
11 C &f();
12 void breakme (C j, bool k)
13 {
14   for (;; k ? j : f())  ;
15 }