param_key: fix container of when no struct member is referenced
[smatch.git] / validation / function-redecl2.c
blobef396137af4e31bf5fc3fbc0b650136c8cbef7d4
1 extern void exit (int __status) __attribute__ ((__noreturn__));
3 int func0(int a) __attribute__ ((pure));
5 __attribute__ ((pure))
6 int func0(int a)
8 return 0;
11 __attribute__ ((noreturn)) void func1(int a);
13 void func1(int a)
15 exit(0);
18 void func2(int a) __attribute__ ((noreturn));
20 __attribute__ ((noreturn))
21 void func2(int a)
23 exit(0);
27 * check-name: function-redecl2