1 // RUN: %clang_cc1 -arcmt-check -fsyntax-only -fobjc-arc -x objective-c %s 2 3 @protocol NSObject 4 - (oneway void)release; 5 @end 6 7 void test1(id p) { 8 [p release]; 9 } 10