blob: db773d698e4e3ef98a39b74efba7e85d2a87cced [file] [log] [blame]
// PRMS Id: 3069
void f(int&); // ERROR - referenced by error below
void g(const int& i) {
f(i); // ERROR - discarding const
}