Skip to content

Commit d307f56

Browse files
committed
Restore support for rust pre-1.33
error[E0658]: renaming imports with `_` is unstable (see issue 48216) --> src/fallback.rs:7:38 | 7 | use std::fmt::{self, Debug, Display, Write as _}; | ^^^^^^^^^^
1 parent 16c4bb4 commit d307f56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fallback.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::{Delimiter, Spacing, TokenTree};
44
use std::cell::RefCell;
55
#[cfg(span_locations)]
66
use std::cmp;
7-
use std::fmt::{self, Debug, Display, Write as _};
7+
use std::fmt::{self, Debug, Display, Write};
88
use std::iter::FromIterator;
99
use std::mem;
1010
use std::ops::RangeBounds;

0 commit comments

Comments
 (0)