blob: 9cdc8021e470df69c678b997d586c74698c32297 [file] [log] [blame]
/* Test visibility attribute on definition of a function that has
already had a forward declaration. */
/* { dg-do compile { target *86-*-linux* } } */
/* { dg-final { scan-assembler "\\.hidden.*_Z3foov" } } */
void foo();
void
__attribute__((visibility ("hidden")))
foo()
{ }