Richard Smith | 762bb9d | 2011-10-13 22:29:44 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify -std=c++11 %s |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 2 | |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 3 | // Need std::initializer_list |
| 4 | namespace std { |
| 5 | typedef decltype(sizeof(int)) size_t; |
| 6 | |
| 7 | // libc++'s implementation |
| 8 | template <class _E> |
| 9 | class initializer_list |
| 10 | { |
| 11 | const _E* __begin_; |
| 12 | size_t __size_; |
| 13 | |
| 14 | initializer_list(const _E* __b, size_t __s) |
| 15 | : __begin_(__b), |
| 16 | __size_(__s) |
| 17 | {} |
| 18 | |
| 19 | public: |
| 20 | typedef _E value_type; |
| 21 | typedef const _E& reference; |
| 22 | typedef const _E& const_reference; |
| 23 | typedef size_t size_type; |
| 24 | |
| 25 | typedef const _E* iterator; |
| 26 | typedef const _E* const_iterator; |
| 27 | |
| 28 | initializer_list() : __begin_(nullptr), __size_(0) {} |
| 29 | |
| 30 | size_t size() const {return __size_;} |
| 31 | const _E* begin() const {return __begin_;} |
| 32 | const _E* end() const {return __begin_ + __size_;} |
| 33 | }; |
| 34 | } |
| 35 | |
| 36 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 37 | // Declaration syntax checks |
| 38 | [[]] int before_attr; |
Peter Collingbourne | f190768 | 2011-09-29 18:03:57 +0000 | [diff] [blame] | 39 | int [[]] between_attr; |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 40 | const [[]] int between_attr_2 = 0; // expected-error {{an attribute list cannot appear here}} |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 41 | int after_attr [[]]; |
| 42 | int * [[]] ptr_attr; |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 43 | int & [[]] ref_attr = after_attr; |
Richard Smith | 6b3d3e5 | 2013-02-20 19:22:51 +0000 | [diff] [blame] | 44 | int & [[unknown]] ref_attr_2 = after_attr; // expected-warning {{unknown attribute 'unknown' ignored}} |
| 45 | int & [[noreturn]] ref_attr_3 = after_attr; // expected-error {{'noreturn' attribute cannot be applied to types}} |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 46 | int && [[]] rref_attr = 0; |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 47 | int array_attr [1] [[]]; |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 48 | alignas(8) int aligned_attr; |
Michael Han | 6880f49 | 2012-10-03 01:56:22 +0000 | [diff] [blame] | 49 | [[test::valid(for 42 [very] **** '+' symbols went on a trip and had a "good"_time; the end.)]] int garbage_attr; // expected-warning {{unknown attribute 'valid' ignored}} |
| 50 | [[,,,static, class, namespace,, inline, constexpr, mutable,, bitand, bitor::compl(!.*_ Cx.!U^*R),,,]] int more_garbage_attr; // expected-warning {{unknown attribute 'static' ignored}} \ |
| 51 | // expected-warning {{unknown attribute 'class' ignored}} \ |
| 52 | // expected-warning {{unknown attribute 'namespace' ignored}} \ |
| 53 | // expected-warning {{unknown attribute 'inline' ignored}} \ |
| 54 | // expected-warning {{unknown attribute 'constexpr' ignored}} \ |
| 55 | // expected-warning {{unknown attribute 'mutable' ignored}} \ |
| 56 | // expected-warning {{unknown attribute 'bitand' ignored}} \ |
| 57 | // expected-warning {{unknown attribute 'compl' ignored}} |
Richard Smith | c56298d | 2012-04-10 03:25:07 +0000 | [diff] [blame] | 58 | [[u8"invalid!"]] int invalid_string_attr; // expected-error {{expected ']'}} |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 59 | void fn_attr () [[]]; |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 60 | void noexcept_fn_attr () noexcept [[]]; |
| 61 | struct MemberFnOrder { |
| 62 | virtual void f() const volatile && noexcept [[]] final = 0; |
| 63 | }; |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 64 | struct [[]] struct_attr; |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 65 | class [[]] class_attr {}; |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 66 | union [[]] union_attr; |
Michael Han | 2e39713 | 2012-11-26 22:54:45 +0000 | [diff] [blame] | 67 | |
| 68 | // Checks attributes placed at wrong syntactic locations of class specifiers. |
Michael Han | 2e39713 | 2012-11-26 22:54:45 +0000 | [diff] [blame] | 69 | class [[]] [[]] |
| 70 | attr_after_class_name_decl [[]] [[]]; // expected-error {{an attribute list cannot appear here}} |
| 71 | |
| 72 | class [[]] [[]] |
| 73 | attr_after_class_name_definition [[]] [[]] [[]]{}; // expected-error {{an attribute list cannot appear here}} |
| 74 | |
| 75 | class [[]] c {}; |
| 76 | class c [[]] [[]] x; |
| 77 | class c [[]] [[]] y [[]] [[]]; |
| 78 | class c final [(int){0}]; |
| 79 | |
| 80 | class base {}; |
| 81 | class [[]] [[]] final_class |
| 82 | alignas(float) [[]] final // expected-error {{an attribute list cannot appear here}} |
| 83 | alignas(float) [[]] [[]] alignas(float): base{}; // expected-error {{an attribute list cannot appear here}} |
| 84 | |
| 85 | class [[]] [[]] final_class_another |
| 86 | [[]] [[]] alignas(16) final // expected-error {{an attribute list cannot appear here}} |
| 87 | [[]] [[]] alignas(16) [[]]{}; // expected-error {{an attribute list cannot appear here}} |
| 88 | |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 89 | [[]] struct with_init_declarators {} init_declarator; |
| 90 | [[]] struct no_init_declarators; // expected-error {{an attribute list cannot appear here}} |
Richard Smith | 68ea3ae | 2013-02-22 09:06:26 +0000 | [diff] [blame] | 91 | template<typename> [[]] struct no_init_declarators_template; // expected-error {{an attribute list cannot appear here}} |
| 92 | void fn_with_structs() { |
| 93 | [[]] struct with_init_declarators {} init_declarator; |
| 94 | [[]] struct no_init_declarators; // expected-error {{an attribute list cannot appear here}} |
| 95 | } |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 96 | [[]]; |
| 97 | struct ctordtor { |
| 98 | [[]] ctordtor(); |
| 99 | [[]] ~ctordtor(); |
| 100 | }; |
| 101 | [[]] ctordtor::ctordtor() {} |
| 102 | [[]] ctordtor::~ctordtor() {} |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 103 | extern "C++" [[]] int extern_attr; |
| 104 | template <typename T> [[]] void template_attr (); |
Peter Collingbourne | 3497fdf | 2011-09-29 18:04:05 +0000 | [diff] [blame] | 105 | [[]] [[]] int [[]] [[]] multi_attr [[]] [[]]; |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 106 | |
Richard Smith | c56298d | 2012-04-10 03:25:07 +0000 | [diff] [blame] | 107 | int comma_attr [[,]]; |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 108 | int scope_attr [[foo::]]; // expected-error {{expected identifier}} |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 109 | int (paren_attr) [[]]; // expected-error {{an attribute list cannot appear here}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 110 | unsigned [[]] int attr_in_decl_spec; // expected-error {{an attribute list cannot appear here}} |
| 111 | unsigned [[]] int [[]] const double_decl_spec = 0; // expected-error 2{{an attribute list cannot appear here}} |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 112 | class foo { |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 113 | void const_after_attr () [[]] const; // expected-error {{expected ';'}} |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 114 | }; |
| 115 | extern "C++" [[]] { } // expected-error {{an attribute list cannot appear here}} |
| 116 | [[]] template <typename T> void before_template_attr (); // expected-error {{an attribute list cannot appear here}} |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 117 | [[]] namespace ns { int i; } // expected-error {{an attribute list cannot appear here}} expected-note {{declared here}} |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 118 | [[]] static_assert(true, ""); //expected-error {{an attribute list cannot appear here}} |
| 119 | [[]] asm(""); // expected-error {{an attribute list cannot appear here}} |
| 120 | |
| 121 | [[]] using ns::i; // expected-error {{an attribute list cannot appear here}} |
Richard Smith | 6b3d3e5 | 2013-02-20 19:22:51 +0000 | [diff] [blame] | 122 | [[unknown]] using namespace ns; // expected-warning {{unknown attribute 'unknown' ignored}} |
| 123 | [[noreturn]] using namespace ns; // expected-error {{'noreturn' attribute only applies to functions and methods}} |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 124 | |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 125 | [[]] using T = int; // expected-error {{an attribute list cannot appear here}} |
| 126 | using T [[]] = int; // ok |
| 127 | template<typename T> using U [[]] = T; |
| 128 | using ns::i [[]]; // expected-error {{an attribute list cannot appear here}} |
| 129 | using [[]] ns::i; // expected-error {{an attribute list cannot appear here}} |
Richard Smith | 6b3d3e5 | 2013-02-20 19:22:51 +0000 | [diff] [blame] | 130 | using T [[unknown]] = int; // expected-warning {{unknown attribute 'unknown' ignored}} |
| 131 | using T [[noreturn]] = int; // expected-error {{'noreturn' attribute only applies to functions and methods}} |
| 132 | using V = int; // expected-note {{previous}} |
| 133 | using V [[gnu::vector_size(16)]] = int; // expected-error {{redefinition with different types}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 134 | |
| 135 | auto trailing() -> [[]] const int; // expected-error {{an attribute list cannot appear here}} |
| 136 | auto trailing() -> const [[]] int; // expected-error {{an attribute list cannot appear here}} |
| 137 | auto trailing() -> const int [[]]; |
| 138 | auto trailing_2() -> struct struct_attr [[]]; |
| 139 | |
| 140 | namespace N { |
| 141 | struct S {}; |
| 142 | }; |
| 143 | template<typename> struct Template {}; |
| 144 | |
| 145 | // FIXME: Improve this diagnostic |
| 146 | struct [[]] N::S s; // expected-error {{an attribute list cannot appear here}} |
| 147 | struct [[]] Template<int> t; // expected-error {{an attribute list cannot appear here}} |
| 148 | struct [[]] ::template Template<int> u; // expected-error {{an attribute list cannot appear here}} |
| 149 | template struct [[]] Template<char>; // expected-error {{an attribute list cannot appear here}} |
| 150 | template <> struct [[]] Template<void>; |
| 151 | |
| 152 | enum [[]] E1 {}; |
| 153 | enum [[]] E2; // expected-error {{forbids forward references}} |
| 154 | enum [[]] E1; |
| 155 | enum [[]] E3 : int; |
| 156 | enum [[]] { |
| 157 | k_123 [[]] = 123 // expected-error {{an attribute list cannot appear here}} |
| 158 | }; |
| 159 | enum [[]] E1 e; // expected-error {{an attribute list cannot appear here}} |
| 160 | enum [[]] class E4 { }; // expected-error {{an attribute list cannot appear here}} |
| 161 | enum struct [[]] E5; |
| 162 | |
| 163 | struct S { |
| 164 | friend int f [[]] (); // expected-FIXME{{an attribute list cannot appear here}} |
Michael Han | 52b501c | 2012-11-28 23:17:40 +0000 | [diff] [blame] | 165 | friend int f1 [[noreturn]] (); //expected-error{{an attribute list cannot appear here}} |
| 166 | friend int f2 [[]] [[noreturn]] () {} |
| 167 | [[]] friend int g(); // expected-error{{an attribute list cannot appear here}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 168 | [[]] friend int h() { |
| 169 | } |
Michael Han | 52b501c | 2012-11-28 23:17:40 +0000 | [diff] [blame] | 170 | [[]] friend int f3(), f4(), f5(); // expected-error{{an attribute list cannot appear here}} |
| 171 | friend int f6 [[noreturn]] (), f7 [[noreturn]] (), f8 [[noreturn]] (); // expected-error3 {{an attribute list cannot appear here}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 172 | friend class [[]] C; // expected-error{{an attribute list cannot appear here}} |
Michael Han | 52b501c | 2012-11-28 23:17:40 +0000 | [diff] [blame] | 173 | [[]] friend class D; // expected-error{{an attribute list cannot appear here}} |
| 174 | [[]] friend int; // expected-error{{an attribute list cannot appear here}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 175 | }; |
| 176 | template<typename T> void tmpl(T) {} |
| 177 | template void tmpl [[]] (int); // expected-FIXME {{an attribute list cannot appear here}} |
| 178 | template [[]] void tmpl(char); // expected-error {{an attribute list cannot appear here}} |
| 179 | template void [[]] tmpl(short); |
| 180 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 181 | // Argument tests |
Peter Collingbourne | 82d0b0a | 2011-09-29 18:04:28 +0000 | [diff] [blame] | 182 | alignas int aligned_no_params; // expected-error {{expected '('}} |
Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 183 | alignas(i) int aligned_nonconst; // expected-error {{'aligned' attribute requires integer constant}} expected-note {{read of non-const variable 'i'}} |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 184 | |
| 185 | // Statement tests |
| 186 | void foo () { |
| 187 | [[]] ; |
| 188 | [[]] { } |
| 189 | [[]] if (0) { } |
| 190 | [[]] for (;;); |
| 191 | [[]] do { |
| 192 | [[]] continue; |
| 193 | } while (0); |
| 194 | [[]] while (0); |
| 195 | |
| 196 | [[]] switch (i) { |
| 197 | [[]] case 0: |
| 198 | [[]] default: |
| 199 | [[]] break; |
| 200 | } |
| 201 | |
| 202 | [[]] goto there; |
| 203 | [[]] there: |
| 204 | |
| 205 | [[]] try { |
| 206 | } [[]] catch (...) { // expected-error {{an attribute list cannot appear here}} |
| 207 | } |
Richard Smith | 6ee326a | 2012-04-10 01:32:12 +0000 | [diff] [blame] | 208 | struct S { int arr[2]; } s; |
| 209 | (void)s.arr[ [] { return 0; }() ]; // expected-error {{C++11 only allows consecutive left square brackets when introducing an attribute}} |
| 210 | int n = __builtin_offsetof(S, arr[ [] { return 0; }() ]); // expected-error {{C++11 only allows consecutive left square brackets when introducing an attribute}} |
| 211 | |
Richard Smith | 6ce48a7 | 2012-04-11 04:01:28 +0000 | [diff] [blame] | 212 | void bar [[noreturn]] ([[]] int i, [[]] int j); |
| 213 | using FuncType = void ([[]] int); |
| 214 | void baz([[]]...); // expected-error {{expected parameter declarator}} |
| 215 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 216 | [[]] return; |
| 217 | } |
Richard Smith | c56298d | 2012-04-10 03:25:07 +0000 | [diff] [blame] | 218 | |
| 219 | template<typename...Ts> void variadic() { |
| 220 | void bar [[noreturn...]] (); // expected-error {{attribute 'noreturn' cannot be used as an attribute pack}} |
| 221 | } |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 222 | |
| 223 | // Expression tests |
| 224 | void bar () { |
Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 225 | // FIXME: GCC accepts [[gnu::noreturn]] on a lambda, even though it appertains |
| 226 | // to the operator()'s type, and GCC does not otherwise accept attributes |
| 227 | // applied to types. Use that to test this. |
| 228 | [] () [[gnu::noreturn]] { return; } (); // expected-warning {{attribute 'noreturn' ignored}} FIXME-error {{should not return}} |
| 229 | [] () [[gnu::noreturn]] { throw; } (); // expected-warning {{attribute 'noreturn' ignored}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 230 | new int[42][[]][5][[]]{}; |
| 231 | } |
| 232 | |
| 233 | // Condition tests |
| 234 | void baz () { |
Richard Smith | 6b3d3e5 | 2013-02-20 19:22:51 +0000 | [diff] [blame] | 235 | if ([[unknown]] bool b = true) { // expected-warning {{unknown attribute 'unknown' ignored}} |
| 236 | switch ([[unknown]] int n { 42 }) { // expected-warning {{unknown attribute 'unknown' ignored}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 237 | default: |
Richard Smith | 6b3d3e5 | 2013-02-20 19:22:51 +0000 | [diff] [blame] | 238 | for ([[unknown]] int n = 0; [[unknown]] char b = n < 5; ++b) { // expected-warning 2{{unknown attribute 'unknown' ignored}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 239 | } |
| 240 | } |
| 241 | } |
| 242 | int x; |
| 243 | // An attribute can be applied to an expression-statement, such as the first |
| 244 | // statement in a for. But it can't be applied to a condition which is an |
| 245 | // expression. |
| 246 | for ([[]] x = 0; ; ) {} // expected-error {{an attribute list cannot appear here}} |
| 247 | for (; [[]] x < 5; ) {} // expected-error {{an attribute list cannot appear here}} |
| 248 | while ([[]] bool k { false }) { |
| 249 | } |
| 250 | while ([[]] true) { // expected-error {{an attribute list cannot appear here}} |
| 251 | } |
| 252 | do { |
| 253 | } while ([[]] false); // expected-error {{an attribute list cannot appear here}} |
| 254 | |
Richard Smith | 6b3d3e5 | 2013-02-20 19:22:51 +0000 | [diff] [blame] | 255 | for ([[unknown]] int n : { 1, 2, 3 }) { // expected-warning {{unknown attribute 'unknown' ignored}} |
Sean Hunt | 2edf0a2 | 2012-06-23 05:07:58 +0000 | [diff] [blame] | 256 | } |
| 257 | } |
John McCall | 1e12b3d | 2012-06-23 22:30:04 +0000 | [diff] [blame] | 258 | |
| 259 | enum class __attribute__((visibility("hidden"))) SecretKeepers { |
| 260 | one, /* rest are deprecated */ two, three |
| 261 | }; |
| 262 | enum class [[]] EvenMoreSecrets {}; |
Michael Han | 6880f49 | 2012-10-03 01:56:22 +0000 | [diff] [blame] | 263 | |
| 264 | namespace arguments { |
Richard Smith | f7a0527 | 2013-01-14 07:53:01 +0000 | [diff] [blame] | 265 | void f[[gnu::format(printf, 1, 2)]](const char*, ...); |
Richard Smith | 6b3d3e5 | 2013-02-20 19:22:51 +0000 | [diff] [blame] | 266 | void g() [[unknown::foo(arguments of attributes from unknown namespace other than 'gnu' namespace are ignored... blah...)]]; // expected-warning {{unknown attribute 'foo' ignored}} |
Michael Han | 6880f49 | 2012-10-03 01:56:22 +0000 | [diff] [blame] | 267 | } |
Michael Han | f64231e | 2012-11-06 19:34:54 +0000 | [diff] [blame] | 268 | |
Richard Smith | f7a0527 | 2013-01-14 07:53:01 +0000 | [diff] [blame] | 269 | // Forbid attributes on decl specifiers. |
Richard Smith | d03de6a | 2013-01-29 10:02:16 +0000 | [diff] [blame] | 270 | unsigned [[gnu::used]] static int [[gnu::unused]] v1; // expected-error {{'unused' attribute cannot be applied to types}} \ |
Michael Han | f64231e | 2012-11-06 19:34:54 +0000 | [diff] [blame] | 271 | expected-error {{an attribute list cannot appear here}} |
Richard Smith | d03de6a | 2013-01-29 10:02:16 +0000 | [diff] [blame] | 272 | typedef [[gnu::used]] unsigned long [[gnu::unused]] v2; // expected-error {{'unused' attribute cannot be applied to types}} \ |
Michael Han | f64231e | 2012-11-06 19:34:54 +0000 | [diff] [blame] | 273 | expected-error {{an attribute list cannot appear here}} |
Richard Smith | d03de6a | 2013-01-29 10:02:16 +0000 | [diff] [blame] | 274 | int [[carries_dependency]] foo(int [[carries_dependency]] x); // expected-error 2{{'carries_dependency' attribute cannot be applied to types}} |
Richard Smith | f7a0527 | 2013-01-14 07:53:01 +0000 | [diff] [blame] | 275 | |
| 276 | // Forbid [[gnu::...]] attributes on declarator chunks. |
| 277 | int *[[gnu::unused]] v3; // expected-warning {{attribute 'unused' ignored}} |
| 278 | int v4[2][[gnu::unused]]; // expected-warning {{attribute 'unused' ignored}} |
| 279 | int v5()[[gnu::unused]]; // expected-warning {{attribute 'unused' ignored}} |
Richard Smith | 6b3d3e5 | 2013-02-20 19:22:51 +0000 | [diff] [blame] | 280 | |
| 281 | [[attribute_declaration]]; // expected-warning {{unknown attribute 'attribute_declaration' ignored}} |
Michael Han | 684aa73 | 2013-02-22 17:15:32 +0000 | [diff] [blame] | 282 | [[noreturn]]; // expected-error {{'noreturn' attribute only applies to functions and methods}} |
| 283 | [[carries_dependency]]; // expected-error {{'carries_dependency' attribute only applies to functions, methods, and parameters}} |