summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/visibility-15.c
blob: 4e69fa1db4cbdce85d4e2d3e74c1d69e33620fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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 g(void) {
  return foo;
}