We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
use std::fmt;
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
https://doc.rust-lang.org/edition-guide/rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html
// Rust 2015 use std::fmt; fn make_wrapper(string: &str) -> StrWrap { …
// Rust 2018 fn make_wrapper(string: &str) -> StrWrap<'_> { …
In the 2018 example is use std::fmt by default hidden, in 2015 not. (looks inconsistent)
use std::fmt
The text was updated successfully, but these errors were encountered:
use
Successfully merging a pull request may close this issue.
https://doc.rust-lang.org/edition-guide/rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html
In the 2018 example is
use std::fmt
by default hidden, in 2015 not. (looks inconsistent)The text was updated successfully, but these errors were encountered: