[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Parser / c2x-attribute-keywords.m
blob575c88ffffc3d6699bd11d9ff36286a21fd5c843
1 // RUN: %clang_cc1 -fsyntax-only -triple aarch64-none-linux-gnu -target-feature +sme -verify %s
3 enum __arm_inout("za") E1 : int; // expected-error {{'__arm_inout' only applies to non-K&R-style functions}}
5 @interface Base
6 @end
8 @interface S : Base
9 - (void) bar;
10 @end
12 @interface T : Base
13 - (S *) foo;
14 @end
17 void f(T *t) {
18   __arm_inout("za")[[t foo] bar]; // expected-error {{'__arm_inout' cannot be applied to a statement}}