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
22 --> $DIR/feature-gate-custom_attribute2.rs:6:13
33 |
44LL | struct StLt<#[lt_struct] 'a>(&'a u32);
@@ -7,7 +7,7 @@ LL | struct StLt<#[lt_struct] 'a>(&'a u32);
77 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
88 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
99
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
1111 --> $DIR/feature-gate-custom_attribute2.rs:8:13
1212 |
1313LL | struct StTy<#[ty_struct] I>(I);
@@ -16,7 +16,7 @@ LL | struct StTy<#[ty_struct] I>(I);
1616 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
1717 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
1818
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
2020 --> $DIR/feature-gate-custom_attribute2.rs:11:11
2121 |
2222LL | enum EnLt<#[lt_enum] 'b> { A(&'b u32), B }
@@ -25,7 +25,7 @@ LL | enum EnLt<#[lt_enum] 'b> { A(&'b u32), B }
2525 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
2626 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
2727
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
2929 --> $DIR/feature-gate-custom_attribute2.rs:13:11
3030 |
3131LL | enum EnTy<#[ty_enum] J> { A(J), B }
@@ -34,7 +34,7 @@ LL | enum EnTy<#[ty_enum] J> { A(J), B }
3434 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
3535 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
3636
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
3838 --> $DIR/feature-gate-custom_attribute2.rs:16:12
3939 |
4040LL | 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; }
4343 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
4444 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
4545
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
4747 --> $DIR/feature-gate-custom_attribute2.rs:18:12
4848 |
4949LL | trait TrTy<#[ty_trait] K> { fn foo(&self, _: K); }
@@ -52,7 +52,7 @@ LL | trait TrTy<#[ty_trait] K> { fn foo(&self, _: K); }
5252 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
5353 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
5454
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
5656 --> $DIR/feature-gate-custom_attribute2.rs:21:11
5757 |
5858LL | type TyLt<#[lt_type] 'd> = &'d u32;
@@ -61,7 +61,7 @@ LL | type TyLt<#[lt_type] 'd> = &'d u32;
6161 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
6262 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
6363
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
6565 --> $DIR/feature-gate-custom_attribute2.rs:23:11
6666 |
6767LL | type TyTy<#[ty_type] L> = (L, );
@@ -70,7 +70,7 @@ LL | type TyTy<#[ty_type] L> = (L, );
7070 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
7171 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
7272
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
7474 --> $DIR/feature-gate-custom_attribute2.rs:26:6
7575 |
7676LL | impl<#[lt_inherent] 'e> StLt<'e> { }
@@ -79,7 +79,7 @@ LL | impl<#[lt_inherent] 'e> StLt<'e> { }
7979 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
8080 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
8181
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
8383 --> $DIR/feature-gate-custom_attribute2.rs:28:6
8484 |
8585LL | impl<#[ty_inherent] M> StTy<M> { }
@@ -88,7 +88,7 @@ LL | impl<#[ty_inherent] M> StTy<M> { }
8888 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
8989 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
9090
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
9292 --> $DIR/feature-gate-custom_attribute2.rs:31:6
9393 |
9494LL | 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> {
9797 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
9898 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
9999
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
101101 --> $DIR/feature-gate-custom_attribute2.rs:35:6
102102 |
103103LL | 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> {
106106 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
107107 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
108108
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
110110 --> $DIR/feature-gate-custom_attribute2.rs:40:9
111111 |
112112LL | 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 { } }
115115 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
116116 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
117117
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
119119 --> $DIR/feature-gate-custom_attribute2.rs:42:9
120120 |
121121LL | fn f_ty<#[ty_fn] O>(_: O) { }
@@ -124,7 +124,7 @@ LL | fn f_ty<#[ty_fn] O>(_: O) { }
124124 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
125125 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
126126
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
128128 --> $DIR/feature-gate-custom_attribute2.rs:46:13
129129 |
130130LL | 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 { } }
133133 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
134134 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
135135
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
137137 --> $DIR/feature-gate-custom_attribute2.rs:48:13
138138 |
139139LL | fn m_ty<#[ty_meth] P>(_: P) { }
@@ -142,7 +142,7 @@ LL | fn m_ty<#[ty_meth] P>(_: P) { }
142142 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
143143 = help: add `#![feature(custom_attribute)]` to the crate attributes to enable
144144
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
146146 --> $DIR/feature-gate-custom_attribute2.rs:53:19
147147 |
148148LL | where Q: for <#[lt_hof] 'i> Fn(&'i [u32]) -> &'i u32
0 commit comments