blob: 434a046691ea972fc83c6488302b2d1db0263edf [file] [log] [blame]
void f(int &);
void f(const int &);
int main() {
volatile int x = 2;
f((int)x);
}