Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / attr-objc-exception.m
blobe820ad81c54dd88683623d192a59e06136a9f3f6
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
3 __attribute__((__objc_exception__))
4 @interface NSException {
5   int x;
8 @end
11 __attribute__((__objc_exception__)) // expected-error {{'__objc_exception__' attribute only applies to Objective-C interfaces}}
12 int X;
14 __attribute__((__objc_exception__)) // expected-error {{'__objc_exception__' attribute only applies to Objective-C interfaces}}
15 void foo(void);