blob: a9b581f27515465ded2268a678e201be66cb027c [file] [log] [blame]
// Bug: g++ parses the declaration of i as a functional cast.
// Build don't link:
void take_int (int arg) { }
void
test ()
{
int (i);
i = 0;
take_int (i);
}