You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Broken in a recent nightly. Reproducer (playground):
externcrate futures as core;fnbar(){let _ = format!("{}", 42);}
Gives the following:
error[E0433]: failed to resolve: could not find `format_args` in `core`
--> src/lib.rs:4:13
|
4 | let _ = format!("{}", 42);
| ^^^^^^^^^^^^^^^^^ could not find `format_args` in `core`
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
I've also observed this if a crate is named core and gets used without any extern crate items.
modules named core do not trigger this, only crates.
Broken in a recent nightly. Reproducer (playground):
Gives the following:
I've also observed this if a crate is named
core
and gets used without anyextern crate
items.modules named
core
do not trigger this, only crates.Seen in the wild: gfx-rs/gfx#2964
The text was updated successfully, but these errors were encountered: