You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
354 B
11 lines
354 B
4 months ago
|
// RUN: rm -rf %t
|
||
|
//
|
||
|
// 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
|
||
|
// RUN: %clang_cc1 -fmodules -fprebuilt-module-path=%t/ -fdisable-module-hash %s -verify
|
||
|
|
||
|
// expected-no-diagnostics
|
||
|
@import prebuilt;
|
||
|
int test() {
|
||
|
return a;
|
||
|
}
|