blob: 33f31f522a58536387eb2259ffedd002f9a2cf84 [file] [log] [blame]
// RUN: %clang_cc1 -arcmt-check -fsyntax-only -fobjc-arc -x objective-c %s
@protocol NSObject
- (oneway void)release;
@end
void test1(id p) {
[p release];
}