aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/conversion2.C
blob: db773d698e4e3ef98a39b74efba7e85d2a87cced (plain)
1
2
3
4
5
6
// PRMS Id: 3069

void f(int&);			// ERROR - referenced by error below
void g(const int& i) {
  f(i);				// ERROR - discarding const
}