aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/visibility-19.c
blob: 2b0b9beb401a74b3c7b0c2ba2ea88120337bbec5 (plain)
1
2
3
4
5
6
7
8
9
/* Test that accessed external functions are marked. */
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-darwin* } { "*" } { "" } } */
/* { dg-require-visibility "" } */
/* { dg-final { scan-hidden "foo" { xfail *-*-aix* } } } */

extern void foo(void) __attribute__ ((visibility ("hidden")));
typedef void (*foo_t)(void);
foo_t test = foo;