From: Fariborz Jahanian Date: Wed, 4 Jan 2012 23:16:48 +0000 (+0000) Subject: Test case for my previous patch. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5e42ae2694f2c4709dac3d84e3e6e5fac86c244;p=clang Test case for my previous patch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@147563 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaObjC/default-synthesize-3.m b/test/SemaObjC/default-synthesize-3.m index 8616404028..6eff68e20c 100644 --- a/test/SemaObjC/default-synthesize-3.m +++ b/test/SemaObjC/default-synthesize-3.m @@ -4,7 +4,7 @@ #if __has_attribute(objc_suppress_autosynthesis) __attribute ((objc_suppress_autosynthesis)) #endif -@interface NoAuto +@interface NoAuto // expected-note 2 {{class with specified objc_suppress_autosynthesis attribute is declared here}} @property int NoAutoProp; // expected-note 2 {{property declared here}} @end @@ -13,7 +13,7 @@ __attribute ((objc_suppress_autosynthesis)) @end __attribute ((objc_suppress_autosynthesis)) // redundant, just for testing -@interface Sub : NoAuto +@interface Sub : NoAuto // expected-note 3 {{class with specified objc_suppress_autosynthesis attribute is declared here}} @property (copy) id SubProperty; // expected-note 2 {{property declared here}} @end