921e5a0eb4
From-SVN: r14840
15 lines
184 B
C
15 lines
184 B
C
// prms-id: 3836
|
|
|
|
void f(int &i) { // ERROR - ref line
|
|
i = 10;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
int i=1, j=2;
|
|
f(i);
|
|
f((int)j); // ERROR - passing in to non-const
|
|
if (j != 2)
|
|
return 1;
|
|
}
|