blob: eab49250d42a032609f6a93dcdf560e3e8f7674d (
plain)
1
2
3
4
5
6
7
|
/* PR c/79758 */
/* { dg-do compile } */
/* { dg-additional-options "-Wno-old-style-definition -fpermissive" } */
void fn1 (int[a]) { }; /* { dg-error "undeclared here" } */
void fn1 (b) { }; /* { dg-error "redefinition" } */
/* { dg-warning "defaults to 'int'" "" { target *-*-* } .-1 } */
|