mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 08:00:22 -04:00
9 lines
259 B
Objective-C
9 lines
259 B
Objective-C
// RUN: %clang_cc1 -fobjc-runtime=macosx-fragile-10.5 -o - -emit-llvm %s | FileCheck %s
|
|
// RUN: %clang_cc1 -o - -emit-llvm %s | FileCheck %s
|
|
|
|
// CHECK: @OBJC_SELECTOR_REFERENCES_ = private externally_initialized global
|
|
|
|
void test(id x) {
|
|
[x doSomething];
|
|
}
|