Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / validate-attr-swift_attr.m
blob2c73b0a892722c16e34da578bdfaafdeb06faeda
1 // RUN: %clang_cc1 -verify -fsyntax-only %s
3 // expected-error@+1 {{'swift_attr' attribute takes one argument}}
4 __attribute__((swift_attr))
5 @interface I
6 @end
8 // expected-error@+1 {{expected string literal as argument of 'swift_attr' attribute}}
9 __attribute__((swift_attr(1)))
10 @interface J
11 @end