blob: fc1d5c09d614f9dac5040684c15f2c529a2b0690 [file] [log] [blame]
// Build don't run:
void f(const int *);
void f(int *) {}
void f2(const volatile int *);
void f2(volatile int *) {}
int i;
int main()
{
f(&i);
f2(&i);
}