mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
257 B
Objective-C
10 lines
257 B
Objective-C
// RUN: %clang_cc1 %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;
|
|
}
|