summaryrefslogtreecommitdiffstats
path: root/test/Modules/method_pool.m
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-03-01 22:07:04 +0000
committerTed Kremenek <kremenek@apple.com>2012-03-01 22:07:04 +0000
commit32ad2ee2618745ce3da51c2ae066ed5f21157c07 (patch)
tree75ce3669bcdce6d2e76de48f0c88bb48e31d2e22 /test/Modules/method_pool.m
parentb3d7275c1a4a9f676af850cd661b56c4ad7ef5c9 (diff)
Change @import to @__experimental_modules_import. We are not ready to commit to a particular syntax for modules,
and don't have time to push it forward in the near future. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151841 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Modules/method_pool.m')
-rw-r--r--test/Modules/method_pool.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Modules/method_pool.m b/test/Modules/method_pool.m
index 9574caa152..25582caec3 100644
--- a/test/Modules/method_pool.m
+++ b/test/Modules/method_pool.m
@@ -1,7 +1,7 @@
// RUN: rm -rf %t
// RUN: %clang_cc1 -fmodule-cache-path %t -fmodules -I %S/Inputs %s -verify
-@import MethodPoolA;
+@__experimental_modules_import MethodPoolA;
// in other file: // expected-note{{using}}
@@ -19,7 +19,7 @@ void testMethod2(id object) {
[object method2:1];
}
-@import MethodPoolB;
+@__experimental_modules_import MethodPoolB;
void testMethod1Again(id object) {
[object method1];