brintos

brintos / llvm-project-archived public Read only

0
0
Text · 456 B · 88d307d Raw
13 lines · plain
1// RUN: rm -rf %t2// 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 %s3 4@interface A5-(void) m:(id)p; // expected-note {{parameter declared here}}6@end7 8@interface B : A9-(void) m:(__attribute__((ns_consumed)) id)p; // expected-error {{overriding method has mismatched ns_consumed attribute on its parameter}}10@end11 12@import empty;13