brintos

brintos / llvm-project-archived public Read only

0
0
Text · 246 B · dd633d1 Raw
17 lines · plain
1// RUN: %clang_cc1 -emit-llvm %s -o /dev/null2 3extern "C" {4@interface RetainBucket 5+ (id) sharedRetainBucket;6@end7 8@implementation RetainBucket9+ (id) sharedRetainBucket10{11    static id sharedBucket = (id)0;12    return sharedBucket;13}14@end15}16 17