Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 8d43ca2

Browse files
committed
Add and update test for rust-lang#3515
1 parent 1f61286 commit 8d43ca2

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

tests/source/issue-3515.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// rustfmt-reorder_imports: false
2+
3+
use std :: fmt :: { self , Display } ;
4+
use std :: collections :: HashMap ;
5+
6+
fn main() {}

tests/target/issue-3515.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// rustfmt-reorder_imports: false
2+
3+
use std::fmt::{self, Display};
4+
use std::collections::HashMap;
5+
6+
fn main() {}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// rustfmt-reorder_imports: false
22

3-
pub use self :: super :: super :: super :: root::mozilla::detail::StringClassFlags as nsTStringRepr_ClassFlags ;
3+
pub use self::super::super::super::root::mozilla::detail::StringClassFlags as nsTStringRepr_ClassFlags;

0 commit comments

Comments
 (0)