blob: c65327238e953f767ad11bbe6f4aaa67fd4c8333 [file] [log] [blame]
/* LLVM LOCAL file */
/* { dg-do run } */
static int (*foo)(long int key);
static int bar(long int key)
{
foo = 0;
return key;
}
static int (*foo)(long int key) = bar;
int main() {
foo(123);
return 0;
}