]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/llvm-integration/b14.c
59c5120be87c637a8f05d42dbef57e781fbdf209
[apple/ld64.git] / unit-tests / test-cases / llvm-integration / b14.c
1 #include <stdio.h>
2
3 int Y;
4 extern int X __attribute__((visibility("hidden")));
5 void foo() {
6 printf ("%d\n", X);
7 }