]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Modules/prebuilt-module.m
Vendor import of clang trunk r290819:
[FreeBSD/FreeBSD.git] / test / Modules / prebuilt-module.m
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;
8 int test() {
9   return a;
10 }