Skip to content

Hide use std::fmt; in all examples in '_, the anonymous lifetime #189

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

Closed
rusty-snake opened this issue Jul 30, 2019 · 0 comments · Fixed by #190
Closed

Hide use std::fmt; in all examples in '_, the anonymous lifetime #189

rusty-snake opened this issue Jul 30, 2019 · 0 comments · Fixed by #190

Comments

@rusty-snake
Copy link

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant