summaryrefslogtreecommitdiff
path: root/test/Modules/prebuilt-module.m
blob: d5012e0e85f320780d1fc0ffe53ca1ad7a5e4b81 (plain)
1
2
3
4
5
6
7
8
9
10
// 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;
}