blob: 90cc182471771ac895d411dcb89572a151c707e3 [file] [log] [blame]
Manman Renaa0178e52016-10-13 18:42:14 +00001// RUN: rm -rf %t
2// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/objc-initializer %s -emit-llvm -o - -fobjc-arc | FileCheck %s
3// CHECK: kSimDeviceIOGetInterface = internal constant {{.*}} bitcast
4
5#import <X.h>
6void test2(const NSString*);
7void test() {
8 test2(kSimDeviceIOGetInterface);
9}