[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / ARCMT / with-arc-mode-modify.m
blobbeff6784bbbb07a81c3629edddcf07772094b8f3
1 // RUN: %clang_cc1 -fsyntax-only -fobjc-arc -x objective-c %s.result
2 // RUN: cat %s > %t
3 // RUN: %clang_cc1 -arcmt-action=modify -fsyntax-only -fobjc-arc -x objective-c %t
4 // RUN: diff %t %s.result
5 // RUN: rm %t
7 @protocol NSObject
8 - (oneway void)release;
9 @end
11 void test1(id p) {
12   [p release];