summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/visibility-19.c
blob: 140294f493ca435d940dd7448f99e1f0910d69eb (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;