|
| 1 | +error[E0432]: unresolved import `X` |
| 2 | + --> $DIR/underscore-bindings-disambiguators.rs:24:5 |
| 3 | + | |
| 4 | +LL | use X as Y; |
| 5 | + | -^^^^^ |
| 6 | + | | |
| 7 | + | no `X` in the root |
| 8 | + | help: a similar name exists in the module: `_` |
| 9 | + |
| 10 | +error[E0432]: unresolved import `Z` |
| 11 | + --> $DIR/underscore-bindings-disambiguators.rs:25:5 |
| 12 | + | |
| 13 | +LL | use Z as W; |
| 14 | + | -^^^^^ |
| 15 | + | | |
| 16 | + | no `Z` in the root |
| 17 | + | help: a similar name exists in the module: `_` |
| 18 | + |
| 19 | +error[E0080]: evaluation panicked: not yet implemented |
| 20 | + --> $DIR/underscore-bindings-disambiguators.rs:18:19 |
| 21 | + | |
| 22 | +LL | const _: () = todo!(); |
| 23 | + | ^^^^^^^ evaluation of `impls::_` failed here |
| 24 | + | |
| 25 | + = note: this error originates in the macro `todo` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 26 | + |
| 27 | +error[E0080]: evaluation panicked: not yet implemented |
| 28 | + --> $DIR/underscore-bindings-disambiguators.rs:19:19 |
| 29 | + | |
| 30 | +LL | const _: () = todo!(); |
| 31 | + | ^^^^^^^ evaluation of `impls::_` failed here |
| 32 | + | |
| 33 | + = note: this error originates in the macro `todo` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 34 | + |
| 35 | +error[E0080]: evaluation panicked: not yet implemented |
| 36 | + --> $DIR/underscore-bindings-disambiguators.rs:20:19 |
| 37 | + | |
| 38 | +LL | const _: () = todo!(); |
| 39 | + | ^^^^^^^ evaluation of `impls::_` failed here |
| 40 | + | |
| 41 | + = note: this error originates in the macro `todo` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 42 | + |
| 43 | +error[E0080]: evaluation panicked: not yet implemented |
| 44 | + --> $DIR/underscore-bindings-disambiguators.rs:21:19 |
| 45 | + | |
| 46 | +LL | const _: () = todo!(); |
| 47 | + | ^^^^^^^ evaluation of `impls::_` failed here |
| 48 | + | |
| 49 | + = note: this error originates in the macro `todo` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 50 | + |
| 51 | +error[E0080]: evaluation panicked: not yet implemented |
| 52 | + --> $DIR/underscore-bindings-disambiguators.rs:22:19 |
| 53 | + | |
| 54 | +LL | const _: () = todo!(); |
| 55 | + | ^^^^^^^ evaluation of `impls::_` failed here |
| 56 | + | |
| 57 | + = note: this error originates in the macro `todo` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 58 | + |
| 59 | +error[E0080]: evaluation panicked: not yet implemented |
| 60 | + --> $DIR/underscore-bindings-disambiguators.rs:27:15 |
| 61 | + | |
| 62 | +LL | const _: () = todo!(); |
| 63 | + | ^^^^^^^ evaluation of `_` failed here |
| 64 | + | |
| 65 | + = note: this error originates in the macro `todo` (in Nightly builds, run with -Z macro-backtrace for more info) |
| 66 | + |
| 67 | +error: aborting due to 8 previous errors |
| 68 | + |
| 69 | +Some errors have detailed explanations: E0080, E0432. |
| 70 | +For more information about an error, try `rustc --explain E0080`. |
0 commit comments