]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/resolve/resolve-conflict-type-vs-import.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / resolve / resolve-conflict-type-vs-import.stderr
index 1e8df8f8ea78cf29f3a3e470af64ab70e0727126..198ef10311ee98baf80f56ca9948a60962b20ccd 100644 (file)
@@ -1,17 +1,17 @@
 error[E0255]: the name `Iter` is defined multiple times
-  --> $DIR/resolve-conflict-type-vs-import.rs:13:1
+  --> $DIR/resolve-conflict-type-vs-import.rs:3:1
    |
 LL | use std::slice::Iter;
    |     ---------------- previous import of the type `Iter` here
-LL | 
+LL |
 LL | struct Iter;
    | ^^^^^^^^^^^^ `Iter` redefined here
    |
    = note: `Iter` must be defined only once in the type namespace of this module
-help: You can use `as` to change the binding name of the import
+help: you can use `as` to change the binding name of the import
    |
 LL | use std::slice::Iter as OtherIter;
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 error: aborting due to previous error