blob: 4949b45cddeee008d0ad91818568c3302ca02600 [file] [log] [blame]
Fariborz Jahanian8604fae2009-12-14 17:13:18 +00001// RUN: clang -cc1 %s -emit-llvm -o %t -fobjc-gc -fblocks -triple i386-apple-darwin10
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: grep "objc_assign_strongCast" %t | count 2
Daniel Dunbare2265342009-05-23 02:49:02 +00003
4// This should generate a strong cast.
5
6id test3(id x) {
7 __block id result;
8 ^{ result = x; }();
9 return result;
10}