]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/ARCMT/with-arc-mode-check.m
Vendor import of clang tags/RELEASE_33/final r183502 (effectively, 3.3
[FreeBSD/FreeBSD.git] / test / ARCMT / with-arc-mode-check.m
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 }