diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-01-03 18:04:46 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-01-03 18:04:46 +0000 |
commit | 22d0974b40673d2492c5427e4066743223cab696 (patch) | |
tree | c6f73e4f476920769896981552fb01f646313085 /clang/test/Modules/objc-categories.m | |
parent | e097d4ba268d4a04845d23143672953d9efb6302 (diff) | |
download | bcm5719-llvm-22d0974b40673d2492c5427e4066743223cab696.tar.gz bcm5719-llvm-22d0974b40673d2492c5427e4066743223cab696.zip |
Introduce a non-uglified syntax for module imports in Objective-C:
@import identifier [. identifier]* ;
llvm-svn: 147452
Diffstat (limited to 'clang/test/Modules/objc-categories.m')
-rw-r--r-- | clang/test/Modules/objc-categories.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Modules/objc-categories.m b/clang/test/Modules/objc-categories.m index 70a6bf8dd1d..f571523eb51 100644 --- a/clang/test/Modules/objc-categories.m +++ b/clang/test/Modules/objc-categories.m @@ -5,7 +5,7 @@ // RUN: %clang_cc1 -fmodule-cache-path %t -x objective-c -fmodule-name=category_bottom -emit-module %S/Inputs/module.map // RUN: %clang_cc1 -fmodule-cache-path %t %s -verify -__import_module__ category_bottom; +@import category_bottom; // in category_left.h: expected-note {{previous definition}} |