Use @import rather than @__experimental_modules_import, since the
latter is rather a mess to type.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169919 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Modules/modify-module.m b/test/Modules/modify-module.m
index b630ac1..422d3c3 100644
--- a/test/Modules/modify-module.m
+++ b/test/Modules/modify-module.m
@@ -13,7 +13,7 @@
// RUN: echo 'int getA(); int getA2();' > %t/include/A.h
// RUN: %clang_cc1 -fmodule-cache-path %t/cache -fmodules -I %t/include %s -verify
-@__experimental_modules_import B;
+@import B;
int getValue() { return getA() + getB(); }