-
Notifications
You must be signed in to change notification settings - Fork 13.3k
core::write!
is unusable.
#18491
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
You can work around it with mod std {
pub use core::fmt;
} |
Thanks. |
It's fine for the libcore definition to be wired to |
I believe this was fixed by #18578, please let me know if I'm wrong. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
core::write!
expands to usestd::fmt::Arguments::new
, which isn't available withno_std
. That kinda defeats the point of libcore.The text was updated successfully, but these errors were encountered: