aboutsummaryrefslogtreecommitdiff
path: root/test/ARCMT/with-arc-mode-check.m
blob: c3146ef3b6146e043bf1d47d93349e7af4a94a27 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -arcmt-check -fobjc-nonfragile-abi -fsyntax-only -fobjc-arc -x objective-c %s

@protocol NSObject
- (oneway void)release;
@end

void test1(id p) {
  [p release];
}