|
4 | 4 | // gate-test-custom_attribute
|
5 | 5 |
|
6 | 6 | struct StLt<#[lt_struct] 'a>(&'a u32);
|
7 |
| -//~^ ERROR cannot find attribute macro `lt_struct` in this scope |
| 7 | +//~^ ERROR cannot find attribute `lt_struct` in this scope |
8 | 8 | struct StTy<#[ty_struct] I>(I);
|
9 |
| -//~^ ERROR cannot find attribute macro `ty_struct` in this scope |
| 9 | +//~^ ERROR cannot find attribute `ty_struct` in this scope |
10 | 10 |
|
11 | 11 | enum EnLt<#[lt_enum] 'b> { A(&'b u32), B }
|
12 |
| -//~^ ERROR cannot find attribute macro `lt_enum` in this scope |
| 12 | +//~^ ERROR cannot find attribute `lt_enum` in this scope |
13 | 13 | enum EnTy<#[ty_enum] J> { A(J), B }
|
14 |
| -//~^ ERROR cannot find attribute macro `ty_enum` in this scope |
| 14 | +//~^ ERROR cannot find attribute `ty_enum` in this scope |
15 | 15 |
|
16 | 16 | trait TrLt<#[lt_trait] 'c> { fn foo(&self, _: &'c [u32]) -> &'c u32; }
|
17 |
| -//~^ ERROR cannot find attribute macro `lt_trait` in this scope |
| 17 | +//~^ ERROR cannot find attribute `lt_trait` in this scope |
18 | 18 | trait TrTy<#[ty_trait] K> { fn foo(&self, _: K); }
|
19 |
| -//~^ ERROR cannot find attribute macro `ty_trait` in this scope |
| 19 | +//~^ ERROR cannot find attribute `ty_trait` in this scope |
20 | 20 |
|
21 | 21 | type TyLt<#[lt_type] 'd> = &'d u32;
|
22 |
| -//~^ ERROR cannot find attribute macro `lt_type` in this scope |
| 22 | +//~^ ERROR cannot find attribute `lt_type` in this scope |
23 | 23 | type TyTy<#[ty_type] L> = (L, );
|
24 |
| -//~^ ERROR cannot find attribute macro `ty_type` in this scope |
| 24 | +//~^ ERROR cannot find attribute `ty_type` in this scope |
25 | 25 |
|
26 | 26 | impl<#[lt_inherent] 'e> StLt<'e> { }
|
27 |
| -//~^ ERROR cannot find attribute macro `lt_inherent` in this scope |
| 27 | +//~^ ERROR cannot find attribute `lt_inherent` in this scope |
28 | 28 | impl<#[ty_inherent] M> StTy<M> { }
|
29 |
| -//~^ ERROR cannot find attribute macro `ty_inherent` in this scope |
| 29 | +//~^ ERROR cannot find attribute `ty_inherent` in this scope |
30 | 30 |
|
31 | 31 | impl<#[lt_impl_for] 'f> TrLt<'f> for StLt<'f> {
|
32 |
| - //~^ ERROR cannot find attribute macro `lt_impl_for` in this scope |
| 32 | + //~^ ERROR cannot find attribute `lt_impl_for` in this scope |
33 | 33 | fn foo(&self, _: &'f [u32]) -> &'f u32 { loop { } }
|
34 | 34 | }
|
35 | 35 | impl<#[ty_impl_for] N> TrTy<N> for StTy<N> {
|
36 |
| - //~^ ERROR cannot find attribute macro `ty_impl_for` in this scope |
| 36 | + //~^ ERROR cannot find attribute `ty_impl_for` in this scope |
37 | 37 | fn foo(&self, _: N) { }
|
38 | 38 | }
|
39 | 39 |
|
40 | 40 | fn f_lt<#[lt_fn] 'g>(_: &'g [u32]) -> &'g u32 { loop { } }
|
41 |
| -//~^ ERROR cannot find attribute macro `lt_fn` in this scope |
| 41 | +//~^ ERROR cannot find attribute `lt_fn` in this scope |
42 | 42 | fn f_ty<#[ty_fn] O>(_: O) { }
|
43 |
| -//~^ ERROR cannot find attribute macro `ty_fn` in this scope |
| 43 | +//~^ ERROR cannot find attribute `ty_fn` in this scope |
44 | 44 |
|
45 | 45 | impl<I> StTy<I> {
|
46 | 46 | fn m_lt<#[lt_meth] 'h>(_: &'h [u32]) -> &'h u32 { loop { } }
|
47 |
| - //~^ ERROR cannot find attribute macro `lt_meth` in this scope |
| 47 | + //~^ ERROR cannot find attribute `lt_meth` in this scope |
48 | 48 | fn m_ty<#[ty_meth] P>(_: P) { }
|
49 |
| - //~^ ERROR cannot find attribute macro `ty_meth` in this scope |
| 49 | + //~^ ERROR cannot find attribute `ty_meth` in this scope |
50 | 50 | }
|
51 | 51 |
|
52 | 52 | fn hof_lt<Q>(_: Q)
|
53 | 53 | where Q: for <#[lt_hof] 'i> Fn(&'i [u32]) -> &'i u32
|
54 |
| - //~^ ERROR cannot find attribute macro `lt_hof` in this scope |
| 54 | + //~^ ERROR cannot find attribute `lt_hof` in this scope |
55 | 55 | {
|
56 | 56 | }
|
57 | 57 |
|
|
0 commit comments