Fix <rdar://problem/6429113> clang ObjC rewriter: crash rewriting file with Blocks and properties
More fancy footwork to cope with rewriting property 'setters'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60760 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Rewriter/properties.m b/test/Rewriter/properties.m
index 38ba086..68ce6e9 100644
--- a/test/Rewriter/properties.m
+++ b/test/Rewriter/properties.m
@@ -47,6 +47,7 @@
obj1.i = (obj2.rrrr);
[obj1 setI:[obj2 rrrr]];
obj1.i = [obj2 rrrr];
+ obj1.i = 3 + [obj2 rrrr];
i = obj1.o.i;
obj1.o.i = 77;
}