]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve-error.stderr
Auto merge of #44060 - taleks:issue-43205, r=arielb1
[rust.git] / src / test / ui / resolve-error.stderr
1 error: cannot find derive macro `FooWithLongNan` in this scope
2   --> $DIR/resolve-error.rs:37:10
3    |
4 37 | #[derive(FooWithLongNan)]
5    |          ^^^^^^^^^^^^^^ help: try: `FooWithLongName`
6
7 error: cannot find attribute macro `attr_proc_macra` in this scope
8   --> $DIR/resolve-error.rs:40:3
9    |
10 40 | #[attr_proc_macra]
11    |   ^^^^^^^^^^^^^^^ help: try: `attr_proc_macro`
12
13 error: cannot find attribute macro `FooWithLongNan` in this scope
14   --> $DIR/resolve-error.rs:43:3
15    |
16 43 | #[FooWithLongNan]
17    |   ^^^^^^^^^^^^^^
18
19 error: cannot find derive macro `Dlone` in this scope
20   --> $DIR/resolve-error.rs:46:10
21    |
22 46 | #[derive(Dlone)]
23    |          ^^^^^ help: try: `Clone`
24
25 error: cannot find derive macro `Dlona` in this scope
26   --> $DIR/resolve-error.rs:49:10
27    |
28 49 | #[derive(Dlona)]
29    |          ^^^^^ help: try: `Clona`
30
31 error: cannot find derive macro `attr_proc_macra` in this scope
32   --> $DIR/resolve-error.rs:52:10
33    |
34 52 | #[derive(attr_proc_macra)]
35    |          ^^^^^^^^^^^^^^^
36
37 error: cannot find macro `FooWithLongNama!` in this scope
38   --> $DIR/resolve-error.rs:56:5
39    |
40 56 |     FooWithLongNama!();
41    |     ^^^^^^^^^^^^^^^ help: you could try the macro: `FooWithLongNam!`
42
43 error: cannot find macro `attr_proc_macra!` in this scope
44   --> $DIR/resolve-error.rs:58:5
45    |
46 58 |     attr_proc_macra!();
47    |     ^^^^^^^^^^^^^^^ help: you could try the macro: `attr_proc_mac!`
48
49 error: cannot find macro `Dlona!` in this scope
50   --> $DIR/resolve-error.rs:60:5
51    |
52 60 |     Dlona!();
53    |     ^^^^^
54
55 error: cannot find macro `bang_proc_macrp!` in this scope
56   --> $DIR/resolve-error.rs:62:5
57    |
58 62 |     bang_proc_macrp!();
59    |     ^^^^^^^^^^^^^^^ help: you could try the macro: `bang_proc_macro!`
60
61 error: aborting due to previous error(s)
62