]> git.proxmox.com Git - rustc.git/blame - src/test/ui/double-import.stderr
New upstream version 1.25.0+dfsg1
[rustc.git] / src / test / ui / double-import.stderr
CommitLineData
ff7c6d11
XL
1error[E0252]: the name `foo` is defined multiple times
2 --> $DIR/double-import.rs:23:5
3 |
422 | use sub1::foo;
5 | --------- previous import of the value `foo` here
623 | use sub2::foo; //~ ERROR the name `foo` is defined multiple times
7 | ^^^^^^^^^ `foo` reimported here
8 |
9 = note: `foo` must be defined only once in the value namespace of this module
10help: You can use `as` to change the binding name of the import
11 |
2c00a5a8
XL
1223 | use sub2::foo as other_foo; //~ ERROR the name `foo` is defined multiple times
13 | ^^^^^^^^^^^^^^^^^^^^^^
ff7c6d11
XL
14
15error: aborting due to previous error
16