(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
visibility-19.c
       1  /* Test that accessed external functions are marked. */
       2  /* { dg-do compile } */
       3  /* { dg-skip-if "" { *-*-darwin* } } */
       4  /* { dg-require-visibility "" } */
       5  /* { dg-final { scan-hidden "foo" { xfail *-*-aix* } } } */
       6  
       7  extern void foo(void) __attribute__ ((visibility ("hidden")));
       8  typedef void (*foo_t)(void);
       9  foo_t test = foo;