OSDN Git Service

PR c++/26291
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / cond2.C
1 // PR c++/20905
2
3 struct name {};
4
5 int 
6 f ();
7
8 void 
9 g ()
10 {
11   if (int name = f ())
12     {
13     }
14 }