Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / ns-consumed-error-not-warning.m
blob88d307ddca43ca1455fc09e11d8cfe42bdecfd25
1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs -fobjc-arc -verify -fblocks -triple x86_64-apple-darwin10.0.0 -DOBJCARC %s
4 @interface A
5 -(void) m:(id)p; // expected-note {{parameter declared here}}
6 @end
8 @interface B : A
9 -(void) m:(__attribute__((ns_consumed)) id)p; // expected-error {{overriding method has mismatched ns_consumed attribute on its parameter}}
10 @end
12 @import empty;