aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/parse1.C
blob: a5ba83c78ebee2558d28b25a832cda3011d48303 (plain)
1
2
3
4
5
6
7
8
// Bug: g++ parses the declaration of r as a function declaration.
// Build don't link:

void foo (int i)
{
  int &r (i);
  r = 1;			// gets bogus error - 
}