annotate clang/test/SemaObjC/attr-objc-exception.m @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children c4bab56944e8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 %s -fsyntax-only -verify
anatofuz
parents:
diff changeset
2
anatofuz
parents:
diff changeset
3 __attribute__((__objc_exception__))
anatofuz
parents:
diff changeset
4 @interface NSException {
anatofuz
parents:
diff changeset
5 int x;
anatofuz
parents:
diff changeset
6 }
anatofuz
parents:
diff changeset
7
anatofuz
parents:
diff changeset
8 @end
anatofuz
parents:
diff changeset
9
anatofuz
parents:
diff changeset
10
anatofuz
parents:
diff changeset
11 __attribute__((__objc_exception__)) // expected-error {{'__objc_exception__' attribute only applies to Objective-C interfaces}}
anatofuz
parents:
diff changeset
12 int X;
anatofuz
parents:
diff changeset
13
anatofuz
parents:
diff changeset
14 __attribute__((__objc_exception__)) // expected-error {{'__objc_exception__' attribute only applies to Objective-C interfaces}}
anatofuz
parents:
diff changeset
15 void foo();
anatofuz
parents:
diff changeset
16