llvm-project/clang/test/CodeGenObjC/objc2-assign-global.m

9 lines
170 B
Objective-C

// RUN: clang-cc -fnext-runtime -fobjc-gc -emit-llvm -o %t %s &&
// RUN: grep -F '@objc_assign_global' %t | count 2 &&
// RUN: true
id a;
int main() {
a = 0;
}