[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / ARCMT / migrate-emit-errors.m
blob3e33acf75a591445b48f36b900f5dd23d25640f9
1 // RUN: %clang_cc1 -arcmt-action=migrate -mt-migrate-directory %t -arcmt-migrate-emit-errors %s 2>&1 | FileCheck %s
2 // RUN: rm -rf %t
4 @protocol NSObject
5 - (oneway void)release;
6 @end
8 void test(id p) {
9   [p release];
12 // CHECK: error: ARC forbids explicit message send of 'release'