11 lines · plain
1// RUN: rm -rf %t2//3// 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.pcm4// RUN: %clang_cc1 -fmodules -fprebuilt-module-path=%t/ -fdisable-module-hash %s -verify5 6// expected-no-diagnostics7@import prebuilt;8int test(void) {9 return a;10}11