]> git.proxmox.com Git - rustc.git/blame - src/test/ui/proc-macro/issue-83510.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / proc-macro / issue-83510.stderr
CommitLineData
cdc7bbd5
XL
1error[E0412]: cannot find type `Foo` in this scope
2 --> $DIR/issue-83510.rs:5:1
3 |
4LL | issue_83510::dance_like_you_want_to_ice!();
c295e0f8 5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
cdc7bbd5 6 |
17df50a5 7 = note: this error originates in the macro `issue_83510::dance_like_you_want_to_ice` (in Nightly builds, run with -Z macro-backtrace for more info)
cdc7bbd5
XL
8
9error[E0404]: expected trait, found struct `Box`
10 --> $DIR/issue-83510.rs:5:1
11 |
12LL | issue_83510::dance_like_you_want_to_ice!();
c295e0f8 13 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a trait
cdc7bbd5 14 |
17df50a5 15 = note: this error originates in the macro `issue_83510::dance_like_you_want_to_ice` (in Nightly builds, run with -Z macro-backtrace for more info)
cdc7bbd5
XL
16
17error[E0405]: cannot find trait `Baz` in this scope
18 --> $DIR/issue-83510.rs:5:1
19 |
20LL | issue_83510::dance_like_you_want_to_ice!();
c295e0f8 21 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
cdc7bbd5 22 |
17df50a5 23 = note: this error originates in the macro `issue_83510::dance_like_you_want_to_ice` (in Nightly builds, run with -Z macro-backtrace for more info)
cdc7bbd5
XL
24
25error[E0658]: inherent associated types are unstable
26 --> $DIR/issue-83510.rs:5:1
27 |
28LL | issue_83510::dance_like_you_want_to_ice!();
c295e0f8 29 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
cdc7bbd5
XL
30 |
31 = note: see issue #8995 <https://github.com/rust-lang/rust/issues/8995> for more information
32 = help: add `#![feature(inherent_associated_types)]` to the crate attributes to enable
17df50a5 33 = note: this error originates in the macro `issue_83510::dance_like_you_want_to_ice` (in Nightly builds, run with -Z macro-backtrace for more info)
cdc7bbd5
XL
34
35error: aborting due to 4 previous errors
36
37Some errors have detailed explanations: E0404, E0405, E0412, E0658.
38For more information about an error, try `rustc --explain E0404`.