]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/imports/rfc-1560-warning-cycle.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / imports / rfc-1560-warning-cycle.stderr
index 946dc084cd0f8c4fc6e53893cebe8ab40afc9310..fd7e99165b551c40ad824042d33913e402e2454b 100644 (file)
@@ -1,17 +1,18 @@
-error[E0659]: `Foo` is ambiguous (glob import vs glob import in the same module)
-  --> $DIR/rfc-1560-warning-cycle.rs:19:17
+error[E0659]: `Foo` is ambiguous
+  --> $DIR/rfc-1560-warning-cycle.rs:9:17
    |
-LL |         fn f(_: Foo) {} //~ ERROR `Foo` is ambiguous
+LL |         fn f(_: Foo) {}
    |                 ^^^ ambiguous name
    |
+   = note: ambiguous because of multiple glob imports of a name in the same module
 note: `Foo` could refer to the struct imported here
-  --> $DIR/rfc-1560-warning-cycle.rs:17:13
+  --> $DIR/rfc-1560-warning-cycle.rs:7:13
    |
 LL |         use *;
    |             ^
    = help: consider adding an explicit import of `Foo` to disambiguate
 note: `Foo` could also refer to the struct imported here
-  --> $DIR/rfc-1560-warning-cycle.rs:18:13
+  --> $DIR/rfc-1560-warning-cycle.rs:8:13
    |
 LL |         use bar::*;
    |             ^^^^^^