]> git.proxmox.com Git - rustc.git/blob - src/test/ui/proc-macro/resolve-error.stderr
New upstream version 1.38.0+dfsg1
[rustc.git] / src / test / ui / proc-macro / resolve-error.stderr
1 error: cannot find derive macro `FooWithLongNan` in this scope
2 --> $DIR/resolve-error.rs:22:10
3 |
4 LL | #[derive(FooWithLongNan)]
5 | ^^^^^^^^^^^^^^ help: a derive macro with a similar name exists: `FooWithLongName`
6
7 error: cannot find attribute macro `attr_proc_macra` in this scope
8 --> $DIR/resolve-error.rs:27:3
9 |
10 LL | #[attr_proc_macra]
11 | ^^^^^^^^^^^^^^^ help: an attribute macro with a similar name exists: `attr_proc_macro`
12
13 error: cannot find attribute macro `FooWithLongNan` in this scope
14 --> $DIR/resolve-error.rs:31:3
15 |
16 LL | #[FooWithLongNan]
17 | ^^^^^^^^^^^^^^
18
19 error: cannot find derive macro `Dlone` in this scope
20 --> $DIR/resolve-error.rs:34:10
21 |
22 LL | #[derive(Dlone)]
23 | ^^^^^ help: a derive macro with a similar name exists: `Clone`
24
25 error: cannot find derive macro `Dlona` in this scope
26 --> $DIR/resolve-error.rs:38:10
27 |
28 LL | #[derive(Dlona)]
29 | ^^^^^ help: a derive macro with a similar name exists: `Clona`
30
31 error: cannot find derive macro `attr_proc_macra` in this scope
32 --> $DIR/resolve-error.rs:42:10
33 |
34 LL | #[derive(attr_proc_macra)]
35 | ^^^^^^^^^^^^^^^
36
37 error: cannot find macro `FooWithLongNama!` in this scope
38 --> $DIR/resolve-error.rs:47:5
39 |
40 LL | FooWithLongNama!();
41 | ^^^^^^^^^^^^^^^ help: a macro with a similar name exists: `FooWithLongNam`
42
43 error: cannot find macro `attr_proc_macra!` in this scope
44 --> $DIR/resolve-error.rs:50:5
45 |
46 LL | attr_proc_macra!();
47 | ^^^^^^^^^^^^^^^ help: a macro with a similar name exists: `attr_proc_mac`
48
49 error: cannot find macro `Dlona!` in this scope
50 --> $DIR/resolve-error.rs:53:5
51 |
52 LL | Dlona!();
53 | ^^^^^
54
55 error: cannot find macro `bang_proc_macrp!` in this scope
56 --> $DIR/resolve-error.rs:56:5
57 |
58 LL | bang_proc_macrp!();
59 | ^^^^^^^^^^^^^^^ help: a macro with a similar name exists: `bang_proc_macro`
60
61 error: aborting due to 10 previous errors
62