]> git.proxmox.com Git - rustc.git/blame - src/test/ui/proc-macro/resolve-error.stderr
New upstream version 1.37.0+dfsg1
[rustc.git] / src / test / ui / proc-macro / resolve-error.stderr
CommitLineData
dc9dc135
XL
1error[E0658]: The attribute `attr_proc_macra` is currently unknown to the compiler and may have meaning added to it in the future
2 --> $DIR/resolve-error.rs:27:3
3 |
4LL | #[attr_proc_macra]
5 | ^^^^^^^^^^^^^^^
6 |
7 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
8 = help: add #![feature(custom_attribute)] to the crate attributes to enable
9
10error[E0658]: The attribute `FooWithLongNan` is currently unknown to the compiler and may have meaning added to it in the future
11 --> $DIR/resolve-error.rs:31:3
12 |
13LL | #[FooWithLongNan]
14 | ^^^^^^^^^^^^^^
15 |
16 = note: for more information, see https://github.com/rust-lang/rust/issues/29642
17 = help: add #![feature(custom_attribute)] to the crate attributes to enable
18
041b39d2 19error: cannot find derive macro `FooWithLongNan` in this scope
dc9dc135 20 --> $DIR/resolve-error.rs:22:10
041b39d2 21 |
0531ce1d 22LL | #[derive(FooWithLongNan)]
041b39d2
XL
23 | ^^^^^^^^^^^^^^ help: try: `FooWithLongName`
24
041b39d2 25error: cannot find derive macro `Dlone` in this scope
dc9dc135 26 --> $DIR/resolve-error.rs:34:10
041b39d2 27 |
0531ce1d 28LL | #[derive(Dlone)]
041b39d2
XL
29 | ^^^^^ help: try: `Clone`
30
31error: cannot find derive macro `Dlona` in this scope
dc9dc135 32 --> $DIR/resolve-error.rs:38:10
041b39d2 33 |
0531ce1d 34LL | #[derive(Dlona)]
041b39d2
XL
35 | ^^^^^ help: try: `Clona`
36
37error: cannot find derive macro `attr_proc_macra` in this scope
dc9dc135 38 --> $DIR/resolve-error.rs:42:10
041b39d2 39 |
0531ce1d 40LL | #[derive(attr_proc_macra)]
532ac7d7 41 | ^^^^^^^^^^^^^^^
041b39d2
XL
42
43error: cannot find macro `FooWithLongNama!` in this scope
dc9dc135 44 --> $DIR/resolve-error.rs:47:5
041b39d2 45 |
0531ce1d 46LL | FooWithLongNama!();
2c00a5a8 47 | ^^^^^^^^^^^^^^^ help: you could try the macro: `FooWithLongNam`
041b39d2
XL
48
49error: cannot find macro `attr_proc_macra!` in this scope
dc9dc135 50 --> $DIR/resolve-error.rs:50:5
041b39d2 51 |
0531ce1d 52LL | attr_proc_macra!();
2c00a5a8 53 | ^^^^^^^^^^^^^^^ help: you could try the macro: `attr_proc_mac`
041b39d2
XL
54
55error: cannot find macro `Dlona!` in this scope
dc9dc135 56 --> $DIR/resolve-error.rs:53:5
041b39d2 57 |
0531ce1d 58LL | Dlona!();
041b39d2
XL
59 | ^^^^^
60
61error: cannot find macro `bang_proc_macrp!` in this scope
dc9dc135 62 --> $DIR/resolve-error.rs:56:5
041b39d2 63 |
0531ce1d 64LL | bang_proc_macrp!();
2c00a5a8 65 | ^^^^^^^^^^^^^^^ help: you could try the macro: `bang_proc_macro`
041b39d2 66
dc9dc135 67error: aborting due to 10 previous errors
041b39d2 68
dc9dc135 69For more information about this error, try `rustc --explain E0658`.