aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/ref5.C
blob: 07895223350eef244608099587c083f54b945af1 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:

int i;
int &const j = i;		// ERROR - invalid const
int &const f();			// ERROR - invalid const
void g ()
{
  j = 1;
  f() = 1;
}