diff options
Diffstat (limited to 'test/Modules/objc-categories.m')
-rw-r--r-- | test/Modules/objc-categories.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Modules/objc-categories.m b/test/Modules/objc-categories.m index b26759239d..f19dc7efcf 100644 --- a/test/Modules/objc-categories.m +++ b/test/Modules/objc-categories.m @@ -6,7 +6,7 @@ // RUN: %clang_cc1 -fmodules -fmodule-cache-path %t -x objective-c -fmodule-name=category_other -emit-module %S/Inputs/module.map // RUN: %clang_cc1 -fmodules -fmodule-cache-path %t %s -verify -@__experimental_modules_import category_bottom; +@import category_bottom; @@ -34,7 +34,7 @@ void test(Foo *foo, LeftFoo *leftFoo) { // Load another module that also adds categories to Foo, verify that // we see those categories. -@__experimental_modules_import category_other; +@import category_other; void test_other(Foo *foo) { [foo other]; |