blob: ddb68aea31b6917e915628fa630327616a4f5d18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
error: `#[loop_match]` attribute cannot be used on crates
--> $DIR/invalid-attribute.rs:6:1
|
LL | #![loop_match]
| ^^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on crates
--> $DIR/invalid-attribute.rs:7:1
|
LL | #![const_continue]
| ^^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on foreign functions
--> $DIR/invalid-attribute.rs:10:5
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on foreign functions
--> $DIR/invalid-attribute.rs:11:5
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on structs
--> $DIR/invalid-attribute.rs:15:1
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on structs
--> $DIR/invalid-attribute.rs:16:1
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on required trait methods
--> $DIR/invalid-attribute.rs:24:5
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on required trait methods
--> $DIR/invalid-attribute.rs:25:5
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on functions
--> $DIR/invalid-attribute.rs:29:1
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on functions
--> $DIR/invalid-attribute.rs:30:1
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[loop_match]` attribute cannot be used on closures
--> $DIR/invalid-attribute.rs:34:5
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
|
= help: `#[loop_match]` can be applied to
error: `#[const_continue]` attribute cannot be used on closures
--> $DIR/invalid-attribute.rs:35:5
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
|
= help: `#[const_continue]` can be applied to
error: `#[const_continue]` should be applied to a break expression
--> $DIR/invalid-attribute.rs:40:9
|
LL | #[const_continue]
| ^^^^^^^^^^^^^^^^^
LL | 5
| - not a break expression
error: `#[loop_match]` should be applied to a loop
--> $DIR/invalid-attribute.rs:39:9
|
LL | #[loop_match]
| ^^^^^^^^^^^^^
LL | #[const_continue]
LL | 5
| - not a loop
error: aborting due to 14 previous errors
|