blob: dd34b99908783387013587375cd4124b05fe651b [file] [log] [blame]
Argyrios Kyrtzidis1494a4f2011-09-01 21:53:39 +00001// RUN: rm -rf %t
John McCalld1e40d52011-10-02 01:16:38 +00002// RUN: %clang_cc1 -fsyntax-only -fobjc-arc -x objective-c %s.result
Ted Kremenek30660a82012-03-06 20:06:33 +00003// RUN: %clang_cc1 -arcmt-migrate -mt-migrate-directory %t -fsyntax-only -fobjc-arc %s
4// RUN: c-arcmt-test -mt-migrate-directory %t | arcmt-test -verify-transformed-files %s.result
Argyrios Kyrtzidisa944b122011-07-14 00:17:54 +00005// RUN: rm -rf %t
6
7@protocol NSObject
8- (oneway void)release;
9@end
10
11void test1(id p) {
12}