blob: 502aaebb696434a2e8724639828a5a7d3a9e6aff [file] [log] [blame]
// RUN: clang -cc1 -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