1 /* Test visibility attribute on definition of a function that has
2    already had a forward declaration. */
3 /* { dg-do compile } */
4 /* { dg-require-visibility "" } */
5 /* { dg-final { scan-hidden "foo" } } */
6 
7 void foo();
8 
9 void
10  __attribute__((visibility ("hidden")))
foo()11 foo()
12 { }
13