xref: /llvm-project/clang/test/Modules/prebuilt-module.m (revision e9e55acd1ba33311e13e690f8db129b3a624dbd0)
1// RUN: rm -rf %t
2//
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.pcm
4// RUN: %clang_cc1 -fmodules -fprebuilt-module-path=%t/ -fdisable-module-hash %s -verify
5
6// expected-no-diagnostics
7@import prebuilt;
8int test(void) {
9  return a;
10}
11