]> 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 104ed9bdc29e10ee1a79341d1aaf407400451862..198ef10311ee98baf80f56ca9948a60962b20ccd 100644 (file)
@@ -3,7 +3,7 @@ error[E0255]: the name `Iter` is defined multiple times
    |
 LL | use std::slice::Iter;
    |     ---------------- previous import of the type `Iter` here
-LL | 
+LL |
 LL | struct Iter;
    | ^^^^^^^^^^^^ `Iter` redefined here
    |
@@ -11,7 +11,7 @@ LL | struct Iter;
 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