]> git.proxmox.com Git - rustc.git/blob - tests/ui/macros/issue-88228.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / macros / issue-88228.stderr
1 error: cannot find macro `bla` in this scope
2 --> $DIR/issue-88228.rs:20:5
3 |
4 LL | bla!();
5 | ^^^
6 |
7 = help: consider importing this macro:
8 crate::hey::bla
9
10 error: cannot find derive macro `println` in this scope
11 --> $DIR/issue-88228.rs:14:10
12 |
13 LL | #[derive(println)]
14 | ^^^^^^^
15 |
16 = note: `println` is in scope, but it is a function-like macro
17
18 error: cannot find derive macro `Bla` in this scope
19 --> $DIR/issue-88228.rs:9:10
20 |
21 LL | #[derive(Bla)]
22 | ^^^
23 |
24 = help: consider importing this derive macro:
25 crate::hey::Bla
26
27 error: aborting due to 3 previous errors
28