aboutsummaryrefslogtreecommitdiff
path: root/test/ARCMT
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2013-01-28 20:13:44 +0000
committerDouglas Gregor <dgregor@apple.com>2013-01-28 20:13:44 +0000
commitbde67cfdf05f7c569661e7a490b0b0811ac1ec56 (patch)
tree2c28f9ddc2082ab1819ada97a16063409ba5608c /test/ARCMT
parent4581d45405f07374770366be8644d52733985833 (diff)
Undo my re-wording of the "ARC forbids Objective-C objects in ..."
error. Jordan is right. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ARCMT')
-rw-r--r--test/ARCMT/checking.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ARCMT/checking.m b/test/ARCMT/checking.m
index a5c364a058..b06f4a731d 100644
--- a/test/ARCMT/checking.m
+++ b/test/ARCMT/checking.m
@@ -117,7 +117,7 @@ void test1(A *a, BOOL b, struct UnsafeS *unsafeS) {
}
struct S {
- A* a; // expected-error {{ARC forbids Objective-C objects of type 'A *__strong' in struct}}
+ A* a; // expected-error {{ARC forbids Objective-C objects in struct}}
};
@interface B