|
| 1 | +error[E0412]: cannot find type `Foo` in this scope |
| 2 | + --> $DIR/issue-83510.rs:5:1 |
| 3 | + | |
| 4 | +LL | issue_83510::dance_like_you_want_to_ice!(); |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope |
| 6 | + | |
| 7 | + = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) |
| 8 | + |
| 9 | +error[E0404]: expected trait, found struct `Box` |
| 10 | + --> $DIR/issue-83510.rs:5:1 |
| 11 | + | |
| 12 | +LL | issue_83510::dance_like_you_want_to_ice!(); |
| 13 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a trait |
| 14 | + | |
| 15 | + = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) |
| 16 | + |
| 17 | +error[E0405]: cannot find trait `Baz` in this scope |
| 18 | + --> $DIR/issue-83510.rs:5:1 |
| 19 | + | |
| 20 | +LL | issue_83510::dance_like_you_want_to_ice!(); |
| 21 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope |
| 22 | + | |
| 23 | + = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) |
| 24 | + |
| 25 | +error[E0658]: inherent associated types are unstable |
| 26 | + --> $DIR/issue-83510.rs:5:1 |
| 27 | + | |
| 28 | +LL | issue_83510::dance_like_you_want_to_ice!(); |
| 29 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 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 |
| 33 | + = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) |
| 34 | + |
| 35 | +error: aborting due to 4 previous errors |
| 36 | + |
| 37 | +Some errors have detailed explanations: E0404, E0405, E0412, E0658. |
| 38 | +For more information about an error, try `rustc --explain E0404`. |
0 commit comments