blob: d5012e0e85f320780d1fc0ffe53ca1ad7a5e4b81 [file] [log] [blame]
Manman Ren11f2a472016-08-18 17:42:15 +00001// RUN: rm -rf %t
2//
NAKAMURA Takumicc980fc2016-08-19 05:25:26 +00003// RUN: %clang_cc1 -fmodules -x objective-c -I %S/Inputs/prebuilt-module -emit-module %S/Inputs/prebuilt-module/module.modulemap -fmodule-name=prebuilt -o %t/prebuilt.pcm
Manman Ren11f2a472016-08-18 17:42:15 +00004// RUN: %clang_cc1 -fmodules -fprebuilt-module-path=%t/ -fdisable-module-hash %s -verify
5
6// expected-no-diagnostics
7@import prebuilt;
8int test() {
9 return a;
10}