rt_gccstream/gcc/testsuite/g++.dg/expr/cast6.C

7 lines
86 B
C

void f(int &);
void f(const int &);
int main() {
volatile int x = 2;
f((int)x);
}