freebsd-dev/test/CodeGenObjC/blocks-2.m
2009-11-18 14:59:57 +00:00

11 lines
255 B
Objective-C

// RUN: clang-cc %s -emit-llvm -o %t -fobjc-gc -fblocks -triple i386-apple-darwin10
// RUN: grep "objc_assign_strongCast" %t | count 2
// This should generate a strong cast.
id test3(id x) {
__block id result;
^{ result = x; }();
return result;
}