From 2bd03723e7a8c982ce7b35115f5cc8755aa7091c Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Tue, 21 Oct 2008 18:21:45 +0000 Subject: [PATCH] Fix clang static analyzer crashes when encountering blocks as objects ASTContext::isObjCObjectPointerType() needs to consider blocks as objects. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57913 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaObjC/property-10.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/SemaObjC/property-10.m b/test/SemaObjC/property-10.m index 69a5ae80fe..2de5205a1f 100644 --- a/test/SemaObjC/property-10.m +++ b/test/SemaObjC/property-10.m @@ -15,4 +15,8 @@ @property(assign, copy, retain) id p3_3; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}, expected-error {{property attributes 'assign' and 'retain' are mutually exclusive}} @property id p4; // expected-warning {{no 'assign', 'retain', or 'copy' attribute is specified - 'assign' is assumed}}, expected-warning {{default property attribute 'assign' not appropriate for non-gc object}} + +@property(nonatomic,copy) int (^includeMailboxCondition)(); +@property(nonatomic,copy) int (*includeMailboxCondition2)(); // expected-error {{property with 'copy' attribute must be of object type}} + @end -- 2.50.1