blob: dd8ac573deede2408e601eea6aa0dd4667686087 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Chris Lattner677a3582009-02-14 08:09:34 +00002
3__attribute__((__objc_exception__))
4@interface NSException {
5 int x;
6}
7
8@end
9
10
Aaron Ballmanf90ccb02013-07-18 14:56:42 +000011__attribute__((__objc_exception__)) // expected-error {{'__objc_exception__' attribute only applies to Objective-C interfaces}}
Chris Lattner677a3582009-02-14 08:09:34 +000012int X;
13
Aaron Ballmanf90ccb02013-07-18 14:56:42 +000014__attribute__((__objc_exception__)) // expected-error {{'__objc_exception__' attribute only applies to Objective-C interfaces}}
Chris Lattner677a3582009-02-14 08:09:34 +000015void foo();
16