1
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
1
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
2
2
--> $DIR/feature-gate-custom_attribute.rs:7:3
3
3
|
4
4
LL | #[fake_attr]
@@ -7,7 +7,7 @@ LL | #[fake_attr]
7
7
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
8
8
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
9
9
10
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
10
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
11
11
--> $DIR/feature-gate-custom_attribute.rs:8:3
12
12
|
13
13
LL | #[fake_attr(100)]
@@ -16,7 +16,7 @@ LL | #[fake_attr(100)]
16
16
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
17
17
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
18
18
19
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
19
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
20
20
--> $DIR/feature-gate-custom_attribute.rs:9:3
21
21
|
22
22
LL | #[fake_attr(1, 2, 3)]
@@ -25,7 +25,7 @@ LL | #[fake_attr(1, 2, 3)]
25
25
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
26
26
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
27
27
28
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
28
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
29
29
--> $DIR/feature-gate-custom_attribute.rs:10:3
30
30
|
31
31
LL | #[fake_attr("hello")]
@@ -34,7 +34,7 @@ LL | #[fake_attr("hello")]
34
34
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
35
35
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
36
36
37
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
37
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
38
38
--> $DIR/feature-gate-custom_attribute.rs:11:3
39
39
|
40
40
LL | #[fake_attr(name = "hello")]
@@ -43,7 +43,7 @@ LL | #[fake_attr(name = "hello")]
43
43
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
44
44
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
45
45
46
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
46
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
47
47
--> $DIR/feature-gate-custom_attribute.rs:12:3
48
48
|
49
49
LL | #[fake_attr(1, "hi", key = 12, true, false)]
@@ -52,7 +52,7 @@ LL | #[fake_attr(1, "hi", key = 12, true, false)]
52
52
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
53
53
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
54
54
55
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
55
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
56
56
--> $DIR/feature-gate-custom_attribute.rs:13:3
57
57
|
58
58
LL | #[fake_attr(key = "hello", val = 10)]
@@ -61,7 +61,7 @@ LL | #[fake_attr(key = "hello", val = 10)]
61
61
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
62
62
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
63
63
64
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
64
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
65
65
--> $DIR/feature-gate-custom_attribute.rs:14:3
66
66
|
67
67
LL | #[fake_attr(key("hello"), val(10))]
@@ -70,7 +70,7 @@ LL | #[fake_attr(key("hello"), val(10))]
70
70
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
71
71
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
72
72
73
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
73
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
74
74
--> $DIR/feature-gate-custom_attribute.rs:15:3
75
75
|
76
76
LL | #[fake_attr(enabled = true, disabled = false)]
@@ -79,7 +79,7 @@ LL | #[fake_attr(enabled = true, disabled = false)]
79
79
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
80
80
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
81
81
82
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
82
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
83
83
--> $DIR/feature-gate-custom_attribute.rs:16:3
84
84
|
85
85
LL | #[fake_attr(true)]
@@ -88,7 +88,7 @@ LL | #[fake_attr(true)]
88
88
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
89
89
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
90
90
91
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
91
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
92
92
--> $DIR/feature-gate-custom_attribute.rs:17:3
93
93
|
94
94
LL | #[fake_attr(pi = 3.14159)]
@@ -97,7 +97,7 @@ LL | #[fake_attr(pi = 3.14159)]
97
97
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
98
98
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
99
99
100
- error[E0658]: the attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
100
+ error[E0658]: The attribute `fake_attr` is currently unknown to the compiler and may have meaning added to it in the future
101
101
--> $DIR/feature-gate-custom_attribute.rs:18:3
102
102
|
103
103
LL | #[fake_attr(b"hi")]
@@ -106,7 +106,7 @@ LL | #[fake_attr(b"hi")]
106
106
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
107
107
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
108
108
109
- error[E0658]: the attribute `fake_doc` is currently unknown to the compiler and may have meaning added to it in the future
109
+ error[E0658]: The attribute `fake_doc` is currently unknown to the compiler and may have meaning added to it in the future
110
110
--> $DIR/feature-gate-custom_attribute.rs:19:3
111
111
|
112
112
LL | #[fake_doc(r"doc")]
0 commit comments