OSDN Git Service

2009-07-28 Jan Beulich <jbeulich@novell.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / rfg1.C
1 // { dg-do assemble  }
2 // Bug: g++ parses the declaration of i as a functional cast.
3
4 void take_int (int arg) { }
5  
6 void
7 test ()
8 {
9     int (i);
10
11     i = 0;
12     take_int (i);
13 }