blob: 70d490c837dbbfc918efa8ee7d28529b1091c0c6 [file] [log] [blame]
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +00001// RUN: %clang_cc1 -arcmt-migrate -arcmt-migrate-directory %t -arcmt-migrate-emit-errors %s -fobjc-nonfragile-abi 2>&1 | FileCheck %s
2// RUN: rm -rf %t
3
4@protocol NSObject
5- (oneway void)release;
6@end
7
8void test(id p) {
9 [p release];
10}
11
12// CHECK: error: ARC forbids explicit message send of 'release'