aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/hidden.m
blob: 2cc3aefde49c5f0ca4b66019bbf1295f2d4f40b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: clang -fnext-runtime --emit-llvm -o %t %s

__attribute__((visibility("hidden")))
@interface Hidden
+(void) bar;
@end

@implementation Hidden
+(void) bar {}
@end

__attribute__((visibility("default")))
@interface Default
+(void) bar;
@end

@implementation Default
+(void) bar {}
@end