You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
266 B

// RUN: %clang_cc1 %s -o %t -emit-llvm -verify
// expected-no-diagnostics
// PR4289
struct funcptr {
int (*func)();
};
static int func(f)
void *f;
{
return 0;
}
int
main(int argc, char *argv[])
{
struct funcptr fp;
fp.func = &func;
fp.func = func;
}