(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
visibility-2.c
       1  /* Test that visibility attribute on declaration extends to definition. */
       2  /* { dg-do compile } */
       3  /* { dg-require-visibility "" } */
       4  /* { dg-final { scan-hidden "foo" } } */
       5  
       6  void 
       7  __attribute__((visibility ("hidden")))
       8  foo();
       9  
      10  void foo() { }