summaryrefslogtreecommitdiffstats
path: root/clang/test/Modules/module-private.cpp
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
commitc1e4dd0e8e6ec8b638bc87ee6dd55f114a4d0e2f (patch)
tree3ef4165164d5e48da3a9dee129d627e6e44f1889 /clang/test/Modules/module-private.cpp
parent8dc53af5dcbbcbb00faf3ed3cc3e62c982007144 (diff)
downloadbcm5719-llvm-c1e4dd0e8e6ec8b638bc87ee6dd55f114a4d0e2f.tar.gz
bcm5719-llvm-c1e4dd0e8e6ec8b638bc87ee6dd55f114a4d0e2f.zip
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. llvm-svn: 151841
Diffstat (limited to 'clang/test/Modules/module-private.cpp')
-rw-r--r--clang/test/Modules/module-private.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/module-private.cpp b/clang/test/Modules/module-private.cpp
index e972ce2891c..246dcaf80e2 100644
--- a/clang/test/Modules/module-private.cpp
+++ b/clang/test/Modules/module-private.cpp
@@ -4,8 +4,8 @@
// RUN: %clang_cc1 -fmodules -x objective-c++ -fmodule-cache-path %t %s -verify
// FIXME: When we have a syntax for modules in C++, use that.
-@import module_private_left;
-@import module_private_right;
+@__experimental_modules_import module_private_left;
+@__experimental_modules_import module_private_right;
void test() {
int &ir = f0(1.0); // okay: f0() from 'right' is not visible
OpenPOWER on IntegriCloud