blob: 17a398072e1fde92132d9245395af1f9a279dfa9 [file] [log] [blame]
Argyrios Kyrtzidisa944b122011-07-14 00:17:54 +00001// RUN: %clang_cc1 -fobjc-nonfragile-abi -fsyntax-only -fobjc-arc -x objective-c %s.result
2// RUN: cp %s %t
3// RUN: %clang_cc1 -arcmt-modify -fobjc-nonfragile-abi -fsyntax-only -fobjc-arc -x objective-c %t
4// RUN: diff %t %s.result
5// RUN: rm %t
6
7@protocol NSObject
8- (oneway void)release;
9@end
10
11void test1(id p) {
12 [p release];
13}