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