blob: 9374b58b1f24040fa2f538183f36f0be20157c0b [file] [log] [blame]
Richard Smith534986f2012-04-14 00:33:13 +00001// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify -std=c++11 %s
2
3void foo(int i) {
4
Michael Han6880f492012-10-03 01:56:22 +00005 [[unknown_attribute]] ; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
6 [[unknown_attribute]] { } // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
7 [[unknown_attribute]] if (0) { } // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
8 [[unknown_attribute]] for (;;); // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
9 [[unknown_attribute]] do { // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
10 [[unknown_attribute]] continue; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
Richard Smith534986f2012-04-14 00:33:13 +000011 } while (0);
Michael Han6880f492012-10-03 01:56:22 +000012 [[unknown_attribute]] while (0); // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
Richard Smith534986f2012-04-14 00:33:13 +000013
Michael Han6880f492012-10-03 01:56:22 +000014 [[unknown_attribute]] switch (i) { // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
15 [[unknown_attribute]] case 0: // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
16 [[unknown_attribute]] default: // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
17 [[unknown_attribute]] break; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
Richard Smith534986f2012-04-14 00:33:13 +000018 }
19
Michael Han6880f492012-10-03 01:56:22 +000020 [[unknown_attribute]] goto here; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
21 [[unknown_attribute]] here: // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
Richard Smith534986f2012-04-14 00:33:13 +000022
Michael Han6880f492012-10-03 01:56:22 +000023 [[unknown_attribute]] try { // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
Richard Smith534986f2012-04-14 00:33:13 +000024 } catch (...) {
25 }
26
Michael Han6880f492012-10-03 01:56:22 +000027 [[unknown_attribute]] return; // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
28
Richard Smith534986f2012-04-14 00:33:13 +000029
Richard Smith05321402013-02-19 23:47:15 +000030 alignas(8) ; // expected-error {{'alignas' attribute cannot be applied to a statement}}
31 [[noreturn]] { } // expected-error {{'noreturn' attribute cannot be applied to a statement}}
32 [[noreturn]] if (0) { } // expected-error {{'noreturn' attribute cannot be applied to a statement}}
33 [[noreturn]] for (;;); // expected-error {{'noreturn' attribute cannot be applied to a statement}}
34 [[noreturn]] do { // expected-error {{'noreturn' attribute cannot be applied to a statement}}
Michael Han6880f492012-10-03 01:56:22 +000035 [[unavailable]] continue; // expected-warning {{unknown attribute 'unavailable' ignored}}
Richard Smith534986f2012-04-14 00:33:13 +000036 } while (0);
Michael Han6880f492012-10-03 01:56:22 +000037 [[unknown_attributqqq]] while (0); // expected-warning {{unknown attribute 'unknown_attributqqq' ignored}}
38 // TODO: remove 'qqq' part and enjoy 'empty loop body' warning here (DiagnoseEmptyLoopBody)
Richard Smith534986f2012-04-14 00:33:13 +000039
Michael Han6880f492012-10-03 01:56:22 +000040 [[unknown_attribute]] while (0); // expected-warning {{unknown attribute 'unknown_attribute' ignored}}
41
42 [[unused]] switch (i) { // expected-warning {{unknown attribute 'unused' ignored}}
43 [[uuid]] case 0: // expected-warning {{unknown attribute 'uuid' ignored}}
44 [[visibility]] default: // expected-warning {{unknown attribute 'visibility' ignored}}
Richard Smith05321402013-02-19 23:47:15 +000045 [[carries_dependency]] break; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
Richard Smith534986f2012-04-14 00:33:13 +000046 }
47
Michael Han6880f492012-10-03 01:56:22 +000048 [[fastcall]] goto there; // expected-warning {{unknown attribute 'fastcall' ignored}}
49 [[noinline]] there: // expected-warning {{unknown attribute 'noinline' ignored}}
Richard Smith534986f2012-04-14 00:33:13 +000050
Michael Han6880f492012-10-03 01:56:22 +000051 [[lock_returned]] try { // expected-warning {{unknown attribute 'lock_returned' ignored}}
Richard Smith534986f2012-04-14 00:33:13 +000052 } catch (...) {
53 }
54
Michael Han6880f492012-10-03 01:56:22 +000055 [[weakref]] return; // expected-warning {{unknown attribute 'weakref' ignored}}
56
Richard Smith05321402013-02-19 23:47:15 +000057 [[carries_dependency]] ; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
58 [[carries_dependency]] { } // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
59 [[carries_dependency]] if (0) { } // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
60 [[carries_dependency]] for (;;); // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
61 [[carries_dependency]] do { // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
62 [[carries_dependency]] continue; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}} ignored}}
Michael Han6880f492012-10-03 01:56:22 +000063 } while (0);
Richard Smith05321402013-02-19 23:47:15 +000064 [[carries_dependency]] while (0); // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
Michael Han6880f492012-10-03 01:56:22 +000065
Richard Smith05321402013-02-19 23:47:15 +000066 [[carries_dependency]] switch (i) { // expected-error {{'carries_dependency' attribute cannot be applied to a statement}} ignored}}
67 [[carries_dependency]] case 0: // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
68 [[carries_dependency]] default: // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
69 [[carries_dependency]] break; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
Michael Han6880f492012-10-03 01:56:22 +000070 }
71
Richard Smith05321402013-02-19 23:47:15 +000072 [[carries_dependency]] goto here; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
Michael Han6880f492012-10-03 01:56:22 +000073
Richard Smith05321402013-02-19 23:47:15 +000074 [[carries_dependency]] try { // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
Michael Han6880f492012-10-03 01:56:22 +000075 } catch (...) {
76 }
77
Richard Smith05321402013-02-19 23:47:15 +000078 [[carries_dependency]] return; // expected-error {{'carries_dependency' attribute cannot be applied to a statement}}
Richard Smithaed01162013-11-15 21:10:54 +000079
80 {
81 [[ ]] // expected-error {{an attribute list cannot appear here}}
82#pragma STDC FP_CONTRACT ON // expected-error {{can only appear at file scope or at the start of a compound statement}}
83 }
Richard Smith534986f2012-04-14 00:33:13 +000084}