1
- error[E0658]: The attribute `lt_struct` is currently unknown to the compiler and may have meaning added to it in the future
1
+ error[E0658]: the attribute `lt_struct` is currently unknown to the compiler and may have meaning added to it in the future
2
2
--> $DIR/feature-gate-custom_attribute2.rs:6:13
3
3
|
4
4
LL | struct StLt<#[lt_struct] 'a>(&'a u32);
@@ -7,7 +7,7 @@ LL | struct StLt<#[lt_struct] 'a>(&'a u32);
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 `ty_struct` is currently unknown to the compiler and may have meaning added to it in the future
10
+ error[E0658]: the attribute `ty_struct` is currently unknown to the compiler and may have meaning added to it in the future
11
11
--> $DIR/feature-gate-custom_attribute2.rs:8:13
12
12
|
13
13
LL | struct StTy<#[ty_struct] I>(I);
@@ -16,7 +16,7 @@ LL | struct StTy<#[ty_struct] I>(I);
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 `lt_enum` is currently unknown to the compiler and may have meaning added to it in the future
19
+ error[E0658]: the attribute `lt_enum` is currently unknown to the compiler and may have meaning added to it in the future
20
20
--> $DIR/feature-gate-custom_attribute2.rs:11:11
21
21
|
22
22
LL | enum EnLt<#[lt_enum] 'b> { A(&'b u32), B }
@@ -25,7 +25,7 @@ LL | enum EnLt<#[lt_enum] 'b> { A(&'b u32), B }
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 `ty_enum` is currently unknown to the compiler and may have meaning added to it in the future
28
+ error[E0658]: the attribute `ty_enum` is currently unknown to the compiler and may have meaning added to it in the future
29
29
--> $DIR/feature-gate-custom_attribute2.rs:13:11
30
30
|
31
31
LL | enum EnTy<#[ty_enum] J> { A(J), B }
@@ -34,7 +34,7 @@ LL | enum EnTy<#[ty_enum] J> { A(J), B }
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 `lt_trait` is currently unknown to the compiler and may have meaning added to it in the future
37
+ error[E0658]: the attribute `lt_trait` is currently unknown to the compiler and may have meaning added to it in the future
38
38
--> $DIR/feature-gate-custom_attribute2.rs:16:12
39
39
|
40
40
LL | trait TrLt<#[lt_trait] 'c> { fn foo(&self, _: &'c [u32]) -> &'c u32; }
@@ -43,7 +43,7 @@ LL | trait TrLt<#[lt_trait] 'c> { fn foo(&self, _: &'c [u32]) -> &'c u32; }
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 `ty_trait` is currently unknown to the compiler and may have meaning added to it in the future
46
+ error[E0658]: the attribute `ty_trait` is currently unknown to the compiler and may have meaning added to it in the future
47
47
--> $DIR/feature-gate-custom_attribute2.rs:18:12
48
48
|
49
49
LL | trait TrTy<#[ty_trait] K> { fn foo(&self, _: K); }
@@ -52,7 +52,7 @@ LL | trait TrTy<#[ty_trait] K> { fn foo(&self, _: K); }
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 `lt_type` is currently unknown to the compiler and may have meaning added to it in the future
55
+ error[E0658]: the attribute `lt_type` is currently unknown to the compiler and may have meaning added to it in the future
56
56
--> $DIR/feature-gate-custom_attribute2.rs:21:11
57
57
|
58
58
LL | type TyLt<#[lt_type] 'd> = &'d u32;
@@ -61,7 +61,7 @@ LL | type TyLt<#[lt_type] 'd> = &'d u32;
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 `ty_type` is currently unknown to the compiler and may have meaning added to it in the future
64
+ error[E0658]: the attribute `ty_type` is currently unknown to the compiler and may have meaning added to it in the future
65
65
--> $DIR/feature-gate-custom_attribute2.rs:23:11
66
66
|
67
67
LL | type TyTy<#[ty_type] L> = (L, );
@@ -70,7 +70,7 @@ LL | type TyTy<#[ty_type] L> = (L, );
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 `lt_inherent` is currently unknown to the compiler and may have meaning added to it in the future
73
+ error[E0658]: the attribute `lt_inherent` is currently unknown to the compiler and may have meaning added to it in the future
74
74
--> $DIR/feature-gate-custom_attribute2.rs:26:6
75
75
|
76
76
LL | impl<#[lt_inherent] 'e> StLt<'e> { }
@@ -79,7 +79,7 @@ LL | impl<#[lt_inherent] 'e> StLt<'e> { }
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 `ty_inherent` is currently unknown to the compiler and may have meaning added to it in the future
82
+ error[E0658]: the attribute `ty_inherent` is currently unknown to the compiler and may have meaning added to it in the future
83
83
--> $DIR/feature-gate-custom_attribute2.rs:28:6
84
84
|
85
85
LL | impl<#[ty_inherent] M> StTy<M> { }
@@ -88,7 +88,7 @@ LL | impl<#[ty_inherent] M> StTy<M> { }
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 `lt_impl_for` is currently unknown to the compiler and may have meaning added to it in the future
91
+ error[E0658]: the attribute `lt_impl_for` is currently unknown to the compiler and may have meaning added to it in the future
92
92
--> $DIR/feature-gate-custom_attribute2.rs:31:6
93
93
|
94
94
LL | impl<#[lt_impl_for] 'f> TrLt<'f> for StLt<'f> {
@@ -97,7 +97,7 @@ LL | impl<#[lt_impl_for] 'f> TrLt<'f> for StLt<'f> {
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 `ty_impl_for` is currently unknown to the compiler and may have meaning added to it in the future
100
+ error[E0658]: the attribute `ty_impl_for` is currently unknown to the compiler and may have meaning added to it in the future
101
101
--> $DIR/feature-gate-custom_attribute2.rs:35:6
102
102
|
103
103
LL | impl<#[ty_impl_for] N> TrTy<N> for StTy<N> {
@@ -106,7 +106,7 @@ LL | impl<#[ty_impl_for] N> TrTy<N> for StTy<N> {
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 `lt_fn` is currently unknown to the compiler and may have meaning added to it in the future
109
+ error[E0658]: the attribute `lt_fn` is currently unknown to the compiler and may have meaning added to it in the future
110
110
--> $DIR/feature-gate-custom_attribute2.rs:40:9
111
111
|
112
112
LL | fn f_lt<#[lt_fn] 'g>(_: &'g [u32]) -> &'g u32 { loop { } }
@@ -115,7 +115,7 @@ LL | fn f_lt<#[lt_fn] 'g>(_: &'g [u32]) -> &'g u32 { loop { } }
115
115
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
116
116
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
117
117
118
- error[E0658]: The attribute `ty_fn` is currently unknown to the compiler and may have meaning added to it in the future
118
+ error[E0658]: the attribute `ty_fn` is currently unknown to the compiler and may have meaning added to it in the future
119
119
--> $DIR/feature-gate-custom_attribute2.rs:42:9
120
120
|
121
121
LL | fn f_ty<#[ty_fn] O>(_: O) { }
@@ -124,7 +124,7 @@ LL | fn f_ty<#[ty_fn] O>(_: O) { }
124
124
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
125
125
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
126
126
127
- error[E0658]: The attribute `lt_meth` is currently unknown to the compiler and may have meaning added to it in the future
127
+ error[E0658]: the attribute `lt_meth` is currently unknown to the compiler and may have meaning added to it in the future
128
128
--> $DIR/feature-gate-custom_attribute2.rs:46:13
129
129
|
130
130
LL | fn m_lt<#[lt_meth] 'h>(_: &'h [u32]) -> &'h u32 { loop { } }
@@ -133,7 +133,7 @@ LL | fn m_lt<#[lt_meth] 'h>(_: &'h [u32]) -> &'h u32 { loop { } }
133
133
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
134
134
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
135
135
136
- error[E0658]: The attribute `ty_meth` is currently unknown to the compiler and may have meaning added to it in the future
136
+ error[E0658]: the attribute `ty_meth` is currently unknown to the compiler and may have meaning added to it in the future
137
137
--> $DIR/feature-gate-custom_attribute2.rs:48:13
138
138
|
139
139
LL | fn m_ty<#[ty_meth] P>(_: P) { }
@@ -142,7 +142,7 @@ LL | fn m_ty<#[ty_meth] P>(_: P) { }
142
142
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
143
143
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
144
144
145
- error[E0658]: The attribute `lt_hof` is currently unknown to the compiler and may have meaning added to it in the future
145
+ error[E0658]: the attribute `lt_hof` is currently unknown to the compiler and may have meaning added to it in the future
146
146
--> $DIR/feature-gate-custom_attribute2.rs:53:19
147
147
|
148
148
LL | where Q: for <#[lt_hof] 'i> Fn(&'i [u32]) -> &'i u32
0 commit comments