Skip to content

Commit

Permalink
Restore support for rust pre-1.33
Browse files Browse the repository at this point in the history
    error[E0658]: renaming imports with `_` is unstable (see issue 48216)
     --> src/fallback.rs:7:38
      |
    7 | use std::fmt::{self, Debug, Display, Write as _};
      |                                      ^^^^^^^^^^
  • Loading branch information
dtolnay committed May 6, 2022
1 parent 16c4bb4 commit d307f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fallback.rs
Expand Up @@ -4,7 +4,7 @@ use crate::{Delimiter, Spacing, TokenTree};
use std::cell::RefCell;
#[cfg(span_locations)]
use std::cmp;
use std::fmt::{self, Debug, Display, Write as _};
use std::fmt::{self, Debug, Display, Write};
use std::iter::FromIterator;
use std::mem;
use std::ops::RangeBounds;
Expand Down

0 comments on commit d307f56

Please sign in to comment.