Fix type in the changelog entry,
[official-gcc.git] / gcc / testsuite / gcc.dg / visibility-19.c
blob3c2455fb291cb5d479d356fdc88529ee1bd9b46a
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" } } */
7 extern void foo(void) __attribute__ ((visibility ("hidden")));
8 typedef void (*foo_t)(void);
9 foo_t test = foo;