blob: 585dfe2bb62bf002822a3f3c1049a2b18b163bb7 [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 "error: address of register variable" } */
}