]> git.proxmox.com Git - rustc.git/blame - tests/ui/imports/issue-8640.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / imports / issue-8640.stderr
CommitLineData
8faf50e0 1error[E0255]: the name `bar` is defined multiple times
0731742a 2 --> $DIR/issue-8640.rs:5:5
8faf50e0
XL
3 |
4LL | use baz::bar;
5 | -------- previous import of the module `bar` here
6LL | mod bar {}
7 | ^^^^^^^ `bar` redefined here
8 |
9 = note: `bar` must be defined only once in the type namespace of this module
0bf4aa26 10help: you can use `as` to change the binding name of the import
8faf50e0
XL
11 |
12LL | use baz::bar as other_bar;
94222f64 13 | ~~~~~~~~~~~~~~~~~~~~~
8faf50e0 14
4b012472 15error: aborting due to 1 previous error
8faf50e0
XL
16
17For more information about this error, try `rustc --explain E0255`.