]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/visibility-2.c
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / visibility-2.c
1 /* Test that visibility attribute on declaration extends to definition. */
2 /* { dg-do compile } */
3 /* { dg-require-visibility "" } */
4 /* { dg-final { scan-hidden "foo" } } */
5
6 void 
7 __attribute__((visibility ("hidden")))
8 foo();
9
10 void foo() { }