PR middle-end/77674
[official-gcc.git] / gcc / testsuite / g++.dg / warn / pr15774-1.C
blob6148ffecb5b625e18132f773cbccbad20954a8e3
1 // { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } }
2 // Test that an new declartion with different attributes then old one fail.
3 extern void foo (int); // { dg-message "old declaration" }
5 void
6 bar (void)
8   foo (1);
11 void __attribute__((stdcall)) foo (int i) // { dg-error "new declaration" }