|
1 | 1 | error: cannot find attribute `lt_hof` in this scope |
2 | | - --> $DIR/feature-gate-custom_attribute2.rs:53:21 |
| 2 | + --> $DIR/feature-gate-custom_attribute2.rs:51:21 |
3 | 3 | | |
4 | 4 | LL | where Q: for <#[lt_hof] 'i> Fn(&'i [u32]) -> &'i u32 |
5 | 5 | | ^^^^^^ |
6 | 6 |
|
7 | 7 | error: cannot find attribute `ty_meth` in this scope |
8 | | - --> $DIR/feature-gate-custom_attribute2.rs:48:15 |
| 8 | + --> $DIR/feature-gate-custom_attribute2.rs:46:15 |
9 | 9 | | |
10 | 10 | LL | fn m_ty<#[ty_meth] P>(_: P) { } |
11 | 11 | | ^^^^^^^ |
12 | 12 |
|
13 | 13 | error: cannot find attribute `lt_meth` in this scope |
14 | | - --> $DIR/feature-gate-custom_attribute2.rs:46:15 |
| 14 | + --> $DIR/feature-gate-custom_attribute2.rs:44:15 |
15 | 15 | | |
16 | 16 | LL | fn m_lt<#[lt_meth] 'h>(_: &'h [u32]) -> &'h u32 { loop { } } |
17 | 17 | | ^^^^^^^ |
18 | 18 |
|
19 | 19 | error: cannot find attribute `ty_fn` in this scope |
20 | | - --> $DIR/feature-gate-custom_attribute2.rs:42:11 |
| 20 | + --> $DIR/feature-gate-custom_attribute2.rs:40:11 |
21 | 21 | | |
22 | 22 | LL | fn f_ty<#[ty_fn] O>(_: O) { } |
23 | 23 | | ^^^^^ |
24 | 24 |
|
25 | 25 | error: cannot find attribute `lt_fn` in this scope |
26 | | - --> $DIR/feature-gate-custom_attribute2.rs:40:11 |
| 26 | + --> $DIR/feature-gate-custom_attribute2.rs:38:11 |
27 | 27 | | |
28 | 28 | LL | fn f_lt<#[lt_fn] 'g>(_: &'g [u32]) -> &'g u32 { loop { } } |
29 | 29 | | ^^^^^ |
30 | 30 |
|
31 | 31 | error: cannot find attribute `ty_impl_for` in this scope |
32 | | - --> $DIR/feature-gate-custom_attribute2.rs:35:8 |
| 32 | + --> $DIR/feature-gate-custom_attribute2.rs:33:8 |
33 | 33 | | |
34 | 34 | LL | impl<#[ty_impl_for] N> TrTy<N> for StTy<N> { |
35 | 35 | | ^^^^^^^^^^^ |
36 | 36 |
|
37 | 37 | error: cannot find attribute `lt_impl_for` in this scope |
38 | | - --> $DIR/feature-gate-custom_attribute2.rs:31:8 |
| 38 | + --> $DIR/feature-gate-custom_attribute2.rs:29:8 |
39 | 39 | | |
40 | 40 | LL | impl<#[lt_impl_for] 'f> TrLt<'f> for StLt<'f> { |
41 | 41 | | ^^^^^^^^^^^ |
42 | 42 |
|
43 | 43 | error: cannot find attribute `ty_inherent` in this scope |
44 | | - --> $DIR/feature-gate-custom_attribute2.rs:28:8 |
| 44 | + --> $DIR/feature-gate-custom_attribute2.rs:26:8 |
45 | 45 | | |
46 | 46 | LL | impl<#[ty_inherent] M> StTy<M> { } |
47 | 47 | | ^^^^^^^^^^^ |
48 | 48 |
|
49 | 49 | error: cannot find attribute `lt_inherent` in this scope |
50 | | - --> $DIR/feature-gate-custom_attribute2.rs:26:8 |
| 50 | + --> $DIR/feature-gate-custom_attribute2.rs:24:8 |
51 | 51 | | |
52 | 52 | LL | impl<#[lt_inherent] 'e> StLt<'e> { } |
53 | 53 | | ^^^^^^^^^^^ |
54 | 54 |
|
55 | 55 | error: cannot find attribute `ty_type` in this scope |
56 | | - --> $DIR/feature-gate-custom_attribute2.rs:23:13 |
| 56 | + --> $DIR/feature-gate-custom_attribute2.rs:21:13 |
57 | 57 | | |
58 | 58 | LL | type TyTy<#[ty_type] L> = (L, ); |
59 | 59 | | ^^^^^^^ |
60 | 60 |
|
61 | 61 | error: cannot find attribute `lt_type` in this scope |
62 | | - --> $DIR/feature-gate-custom_attribute2.rs:21:13 |
| 62 | + --> $DIR/feature-gate-custom_attribute2.rs:19:13 |
63 | 63 | | |
64 | 64 | LL | type TyLt<#[lt_type] 'd> = &'d u32; |
65 | 65 | | ^^^^^^^ |
66 | 66 |
|
67 | 67 | error: cannot find attribute `ty_trait` in this scope |
68 | | - --> $DIR/feature-gate-custom_attribute2.rs:18:14 |
| 68 | + --> $DIR/feature-gate-custom_attribute2.rs:16:14 |
69 | 69 | | |
70 | 70 | LL | trait TrTy<#[ty_trait] K> { fn foo(&self, _: K); } |
71 | 71 | | ^^^^^^^^ |
72 | 72 |
|
73 | 73 | error: cannot find attribute `lt_trait` in this scope |
74 | | - --> $DIR/feature-gate-custom_attribute2.rs:16:14 |
| 74 | + --> $DIR/feature-gate-custom_attribute2.rs:14:14 |
75 | 75 | | |
76 | 76 | LL | trait TrLt<#[lt_trait] 'c> { fn foo(&self, _: &'c [u32]) -> &'c u32; } |
77 | 77 | | ^^^^^^^^ |
78 | 78 |
|
79 | 79 | error: cannot find attribute `ty_enum` in this scope |
80 | | - --> $DIR/feature-gate-custom_attribute2.rs:13:13 |
| 80 | + --> $DIR/feature-gate-custom_attribute2.rs:11:13 |
81 | 81 | | |
82 | 82 | LL | enum EnTy<#[ty_enum] J> { A(J), B } |
83 | 83 | | ^^^^^^^ |
84 | 84 |
|
85 | 85 | error: cannot find attribute `lt_enum` in this scope |
86 | | - --> $DIR/feature-gate-custom_attribute2.rs:11:13 |
| 86 | + --> $DIR/feature-gate-custom_attribute2.rs:9:13 |
87 | 87 | | |
88 | 88 | LL | enum EnLt<#[lt_enum] 'b> { A(&'b u32), B } |
89 | 89 | | ^^^^^^^ |
90 | 90 |
|
91 | 91 | error: cannot find attribute `ty_struct` in this scope |
92 | | - --> $DIR/feature-gate-custom_attribute2.rs:8:15 |
| 92 | + --> $DIR/feature-gate-custom_attribute2.rs:6:15 |
93 | 93 | | |
94 | 94 | LL | struct StTy<#[ty_struct] I>(I); |
95 | 95 | | ^^^^^^^^^ |
96 | 96 |
|
97 | 97 | error: cannot find attribute `lt_struct` in this scope |
98 | | - --> $DIR/feature-gate-custom_attribute2.rs:6:15 |
| 98 | + --> $DIR/feature-gate-custom_attribute2.rs:4:15 |
99 | 99 | | |
100 | 100 | LL | struct StLt<#[lt_struct] 'a>(&'a u32); |
101 | 101 | | ^^^^^^^^^ |
|
0 commit comments