blob: 01816d5f4251e66c8a9ac32c2aca58946b83b44f [file] [log] [blame]
/* PR/18160 */
/* { dg-do compile } */
/* This should yield an error even without -pedantic. */
/* { dg-options "-ansi" } */
void g(int *);
void f(void)
{
register int x;
g(&x); /* { dg-error "address of register variable" } */
}