blob: 7f41be805143209e51fb0c7ec644ef10d9eb460a [file] [log] [blame]
Richard Smith9ca5c422011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify -std=c++11 %s
Alexis Hunt96d5c762009-11-21 08:43:09 +00002
Alexis Hunt6aa9bee2012-06-23 05:07:58 +00003// Need std::initializer_list
4namespace 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
Alexis Hunt96d5c762009-11-21 08:43:09 +000037// Declaration syntax checks
38[[]] int before_attr;
Peter Collingbourne70188b32011-09-29 18:03:57 +000039int [[]] between_attr;
Alexis Hunt6aa9bee2012-06-23 05:07:58 +000040const [[]] int between_attr_2 = 0; // expected-error {{an attribute list cannot appear here}}
Alexis Hunt96d5c762009-11-21 08:43:09 +000041int after_attr [[]];
42int * [[]] ptr_attr;
Richard Smith7bdcc4a2012-04-10 01:32:12 +000043int & [[]] ref_attr = after_attr;
Richard Smith54ecd982013-02-20 19:22:51 +000044int & [[unknown]] ref_attr_2 = after_attr; // expected-warning {{unknown attribute 'unknown' ignored}}
45int & [[noreturn]] ref_attr_3 = after_attr; // expected-error {{'noreturn' attribute cannot be applied to types}}
Richard Smith7bdcc4a2012-04-10 01:32:12 +000046int && [[]] rref_attr = 0;
Alexis Hunt96d5c762009-11-21 08:43:09 +000047int array_attr [1] [[]];
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +000048alignas(8) int aligned_attr;
Michael Han23214e52012-10-03 01:56:22 +000049[[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 Smith3dff2512012-04-10 03:25:07 +000058[[u8"invalid!"]] int invalid_string_attr; // expected-error {{expected ']'}}
Alexis Hunt96d5c762009-11-21 08:43:09 +000059void fn_attr () [[]];
Richard Smith7bdcc4a2012-04-10 01:32:12 +000060void noexcept_fn_attr () noexcept [[]];
61struct MemberFnOrder {
62 virtual void f() const volatile && noexcept [[]] final = 0;
63};
Alexis Hunt6aa9bee2012-06-23 05:07:58 +000064struct [[]] struct_attr;
Alexis Hunt96d5c762009-11-21 08:43:09 +000065class [[]] class_attr {};
Alexis Hunt6aa9bee2012-06-23 05:07:58 +000066union [[]] union_attr;
Michael Han9407e502012-11-26 22:54:45 +000067
68// Checks attributes placed at wrong syntactic locations of class specifiers.
Michael Han9407e502012-11-26 22:54:45 +000069class [[]] [[]]
70 attr_after_class_name_decl [[]] [[]]; // expected-error {{an attribute list cannot appear here}}
71
72class [[]] [[]]
73 attr_after_class_name_definition [[]] [[]] [[]]{}; // expected-error {{an attribute list cannot appear here}}
74
75class [[]] c {};
76class c [[]] [[]] x;
77class c [[]] [[]] y [[]] [[]];
78class c final [(int){0}];
79
80class base {};
81class [[]] [[]] 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
85class [[]] [[]] 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
Alexis Hunt6aa9bee2012-06-23 05:07:58 +000089[[]] struct with_init_declarators {} init_declarator;
90[[]] struct no_init_declarators; // expected-error {{an attribute list cannot appear here}}
Richard Smith2386c8b2013-02-22 09:06:26 +000091template<typename> [[]] struct no_init_declarators_template; // expected-error {{an attribute list cannot appear here}}
92void fn_with_structs() {
93 [[]] struct with_init_declarators {} init_declarator;
94 [[]] struct no_init_declarators; // expected-error {{an attribute list cannot appear here}}
95}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +000096[[]];
97struct ctordtor {
98 [[]] ctordtor();
99 [[]] ~ctordtor();
100};
101[[]] ctordtor::ctordtor() {}
102[[]] ctordtor::~ctordtor() {}
Alexis Hunt96d5c762009-11-21 08:43:09 +0000103extern "C++" [[]] int extern_attr;
104template <typename T> [[]] void template_attr ();
Peter Collingbourne49eedec2011-09-29 18:04:05 +0000105[[]] [[]] int [[]] [[]] multi_attr [[]] [[]];
Alexis Hunt96d5c762009-11-21 08:43:09 +0000106
Richard Smith3dff2512012-04-10 03:25:07 +0000107int comma_attr [[,]];
Alexis Hunt96d5c762009-11-21 08:43:09 +0000108int scope_attr [[foo::]]; // expected-error {{expected identifier}}
Richard Smith7bdcc4a2012-04-10 01:32:12 +0000109int (paren_attr) [[]]; // expected-error {{an attribute list cannot appear here}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000110unsigned [[]] int attr_in_decl_spec; // expected-error {{an attribute list cannot appear here}}
111unsigned [[]] int [[]] const double_decl_spec = 0; // expected-error 2{{an attribute list cannot appear here}}
Alexis Hunt96d5c762009-11-21 08:43:09 +0000112class foo {
Richard Smith7bdcc4a2012-04-10 01:32:12 +0000113 void const_after_attr () [[]] const; // expected-error {{expected ';'}}
Alexis Hunt96d5c762009-11-21 08:43:09 +0000114};
115extern "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 Smithf4c51d92012-02-04 09:53:13 +0000117[[]] namespace ns { int i; } // expected-error {{an attribute list cannot appear here}} expected-note {{declared here}}
Alexis Hunt96d5c762009-11-21 08:43:09 +0000118[[]] 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 Smith54ecd982013-02-20 19:22:51 +0000122[[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}}
Alexis Hunt96d5c762009-11-21 08:43:09 +0000124
Richard Smithc2c8bb82013-10-15 01:34:54 +0000125using [[]] alignas(4) [[]] ns::i; // expected-error {{an attribute list cannot appear here}}
126using [[]] alignas(4) [[]] foobar = int; // expected-error {{an attribute list cannot appear here}} expected-error {{'alignas' attribute only applies to}}
127
128void bad_attributes_in_do_while() {
129 do {} while (
130 [[ns::i); // expected-error {{expected ']'}} \
131 // expected-note {{to match this '['}} \
132 // expected-error {{expected expression}}
133 do {} while (
134 [[a]b ns::i); // expected-error {{expected ']'}} \
135 // expected-note {{to match this '['}} \
136 // expected-error {{expected expression}}
137 do {} while (
138 [[ab]ab] ns::i); // expected-error {{an attribute list cannot appear here}}
139 do {} while ( // expected-note {{to match this '('}}
140 alignas(4 ns::i; // expected-note {{to match this '('}}
141} // expected-error 2{{expected ')'}} expected-error {{expected expression}}
142
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000143[[]] using T = int; // expected-error {{an attribute list cannot appear here}}
144using T [[]] = int; // ok
145template<typename T> using U [[]] = T;
146using ns::i [[]]; // expected-error {{an attribute list cannot appear here}}
147using [[]] ns::i; // expected-error {{an attribute list cannot appear here}}
Richard Smith54ecd982013-02-20 19:22:51 +0000148using T [[unknown]] = int; // expected-warning {{unknown attribute 'unknown' ignored}}
149using T [[noreturn]] = int; // expected-error {{'noreturn' attribute only applies to functions and methods}}
150using V = int; // expected-note {{previous}}
151using V [[gnu::vector_size(16)]] = int; // expected-error {{redefinition with different types}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000152
153auto trailing() -> [[]] const int; // expected-error {{an attribute list cannot appear here}}
154auto trailing() -> const [[]] int; // expected-error {{an attribute list cannot appear here}}
155auto trailing() -> const int [[]];
156auto trailing_2() -> struct struct_attr [[]];
157
158namespace N {
159 struct S {};
160};
161template<typename> struct Template {};
162
163// FIXME: Improve this diagnostic
164struct [[]] N::S s; // expected-error {{an attribute list cannot appear here}}
165struct [[]] Template<int> t; // expected-error {{an attribute list cannot appear here}}
166struct [[]] ::template Template<int> u; // expected-error {{an attribute list cannot appear here}}
167template struct [[]] Template<char>; // expected-error {{an attribute list cannot appear here}}
168template <> struct [[]] Template<void>;
169
170enum [[]] E1 {};
171enum [[]] E2; // expected-error {{forbids forward references}}
172enum [[]] E1;
173enum [[]] E3 : int;
174enum [[]] {
175 k_123 [[]] = 123 // expected-error {{an attribute list cannot appear here}}
176};
177enum [[]] E1 e; // expected-error {{an attribute list cannot appear here}}
178enum [[]] class E4 { }; // expected-error {{an attribute list cannot appear here}}
179enum struct [[]] E5;
180
181struct S {
182 friend int f [[]] (); // expected-FIXME{{an attribute list cannot appear here}}
Michael Handdc016d2012-11-28 23:17:40 +0000183 friend int f1 [[noreturn]] (); //expected-error{{an attribute list cannot appear here}}
184 friend int f2 [[]] [[noreturn]] () {}
185 [[]] friend int g(); // expected-error{{an attribute list cannot appear here}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000186 [[]] friend int h() {
187 }
Michael Handdc016d2012-11-28 23:17:40 +0000188 [[]] friend int f3(), f4(), f5(); // expected-error{{an attribute list cannot appear here}}
189 friend int f6 [[noreturn]] (), f7 [[noreturn]] (), f8 [[noreturn]] (); // expected-error3 {{an attribute list cannot appear here}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000190 friend class [[]] C; // expected-error{{an attribute list cannot appear here}}
Michael Handdc016d2012-11-28 23:17:40 +0000191 [[]] friend class D; // expected-error{{an attribute list cannot appear here}}
192 [[]] friend int; // expected-error{{an attribute list cannot appear here}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000193};
194template<typename T> void tmpl(T) {}
195template void tmpl [[]] (int); // expected-FIXME {{an attribute list cannot appear here}}
196template [[]] void tmpl(char); // expected-error {{an attribute list cannot appear here}}
197template void [[]] tmpl(short);
198
Alexis Hunt96d5c762009-11-21 08:43:09 +0000199// Argument tests
Peter Collingbourne2f3cf4b2011-09-29 18:04:28 +0000200alignas int aligned_no_params; // expected-error {{expected '('}}
Richard Smithf4c51d92012-02-04 09:53:13 +0000201alignas(i) int aligned_nonconst; // expected-error {{'aligned' attribute requires integer constant}} expected-note {{read of non-const variable 'i'}}
Alexis Hunt96d5c762009-11-21 08:43:09 +0000202
203// Statement tests
204void foo () {
205 [[]] ;
206 [[]] { }
207 [[]] if (0) { }
208 [[]] for (;;);
209 [[]] do {
210 [[]] continue;
211 } while (0);
212 [[]] while (0);
213
214 [[]] switch (i) {
215 [[]] case 0:
216 [[]] default:
217 [[]] break;
218 }
219
220 [[]] goto there;
221 [[]] there:
222
223 [[]] try {
224 } [[]] catch (...) { // expected-error {{an attribute list cannot appear here}}
225 }
Richard Smith7bdcc4a2012-04-10 01:32:12 +0000226 struct S { int arr[2]; } s;
227 (void)s.arr[ [] { return 0; }() ]; // expected-error {{C++11 only allows consecutive left square brackets when introducing an attribute}}
228 int n = __builtin_offsetof(S, arr[ [] { return 0; }() ]); // expected-error {{C++11 only allows consecutive left square brackets when introducing an attribute}}
229
Richard Smith2620cd92012-04-11 04:01:28 +0000230 void bar [[noreturn]] ([[]] int i, [[]] int j);
231 using FuncType = void ([[]] int);
232 void baz([[]]...); // expected-error {{expected parameter declarator}}
233
Alexis Hunt96d5c762009-11-21 08:43:09 +0000234 [[]] return;
235}
Richard Smith3dff2512012-04-10 03:25:07 +0000236
237template<typename...Ts> void variadic() {
238 void bar [[noreturn...]] (); // expected-error {{attribute 'noreturn' cannot be used as an attribute pack}}
239}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000240
241// Expression tests
242void bar () {
Richard Smith10876ef2013-01-17 01:30:42 +0000243 // FIXME: GCC accepts [[gnu::noreturn]] on a lambda, even though it appertains
244 // to the operator()'s type, and GCC does not otherwise accept attributes
245 // applied to types. Use that to test this.
246 [] () [[gnu::noreturn]] { return; } (); // expected-warning {{attribute 'noreturn' ignored}} FIXME-error {{should not return}}
247 [] () [[gnu::noreturn]] { throw; } (); // expected-warning {{attribute 'noreturn' ignored}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000248 new int[42][[]][5][[]]{};
249}
250
251// Condition tests
252void baz () {
Richard Smith54ecd982013-02-20 19:22:51 +0000253 if ([[unknown]] bool b = true) { // expected-warning {{unknown attribute 'unknown' ignored}}
254 switch ([[unknown]] int n { 42 }) { // expected-warning {{unknown attribute 'unknown' ignored}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000255 default:
Richard Smith54ecd982013-02-20 19:22:51 +0000256 for ([[unknown]] int n = 0; [[unknown]] char b = n < 5; ++b) { // expected-warning 2{{unknown attribute 'unknown' ignored}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000257 }
258 }
259 }
260 int x;
261 // An attribute can be applied to an expression-statement, such as the first
262 // statement in a for. But it can't be applied to a condition which is an
263 // expression.
264 for ([[]] x = 0; ; ) {} // expected-error {{an attribute list cannot appear here}}
265 for (; [[]] x < 5; ) {} // expected-error {{an attribute list cannot appear here}}
266 while ([[]] bool k { false }) {
267 }
268 while ([[]] true) { // expected-error {{an attribute list cannot appear here}}
269 }
270 do {
271 } while ([[]] false); // expected-error {{an attribute list cannot appear here}}
272
Richard Smith54ecd982013-02-20 19:22:51 +0000273 for ([[unknown]] int n : { 1, 2, 3 }) { // expected-warning {{unknown attribute 'unknown' ignored}}
Alexis Hunt6aa9bee2012-06-23 05:07:58 +0000274 }
275}
John McCallbeae29a2012-06-23 22:30:04 +0000276
277enum class __attribute__((visibility("hidden"))) SecretKeepers {
278 one, /* rest are deprecated */ two, three
279};
280enum class [[]] EvenMoreSecrets {};
Michael Han23214e52012-10-03 01:56:22 +0000281
282namespace arguments {
Richard Smith368ca522013-01-14 07:53:01 +0000283 void f[[gnu::format(printf, 1, 2)]](const char*, ...);
Richard Smith54ecd982013-02-20 19:22:51 +0000284 void g() [[unknown::foo(arguments of attributes from unknown namespace other than 'gnu' namespace are ignored... blah...)]]; // expected-warning {{unknown attribute 'foo' ignored}}
Michael Han23214e52012-10-03 01:56:22 +0000285}
Michael Han64536a62012-11-06 19:34:54 +0000286
Richard Smith368ca522013-01-14 07:53:01 +0000287// Forbid attributes on decl specifiers.
Richard Smith810ad3e2013-01-29 10:02:16 +0000288unsigned [[gnu::used]] static int [[gnu::unused]] v1; // expected-error {{'unused' attribute cannot be applied to types}} \
Michael Han64536a62012-11-06 19:34:54 +0000289 expected-error {{an attribute list cannot appear here}}
Richard Smith810ad3e2013-01-29 10:02:16 +0000290typedef [[gnu::used]] unsigned long [[gnu::unused]] v2; // expected-error {{'unused' attribute cannot be applied to types}} \
Michael Han64536a62012-11-06 19:34:54 +0000291 expected-error {{an attribute list cannot appear here}}
Richard Smith810ad3e2013-01-29 10:02:16 +0000292int [[carries_dependency]] foo(int [[carries_dependency]] x); // expected-error 2{{'carries_dependency' attribute cannot be applied to types}}
Richard Smith368ca522013-01-14 07:53:01 +0000293
294// Forbid [[gnu::...]] attributes on declarator chunks.
295int *[[gnu::unused]] v3; // expected-warning {{attribute 'unused' ignored}}
296int v4[2][[gnu::unused]]; // expected-warning {{attribute 'unused' ignored}}
297int v5()[[gnu::unused]]; // expected-warning {{attribute 'unused' ignored}}
Richard Smith54ecd982013-02-20 19:22:51 +0000298
299[[attribute_declaration]]; // expected-warning {{unknown attribute 'attribute_declaration' ignored}}
Michael Han84324352013-02-22 17:15:32 +0000300[[noreturn]]; // expected-error {{'noreturn' attribute only applies to functions and methods}}
301[[carries_dependency]]; // expected-error {{'carries_dependency' attribute only applies to functions, methods, and parameters}}
Richard Smithf2163662013-09-06 00:12:20 +0000302
303class A {
304 A([[gnu::unused]] int a);
305};
306A::A([[gnu::unused]] int a) {}