blob: 6b86ca0581cc753284436d8279fb88e69f1a5009 [file] [log] [blame]
// RUN: clang-cc -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