15 lines · plain
1// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s2 3// CHECK: @gGlobals = external global4 5@interface I6- (int) Meth;7@end8 9@implementation I10- (int) Meth {11 extern int gGlobals;12 return gGlobals;13}14@end15