Skip to content

Commit 2ef64ee

Browse files
committed
Add another test
1 parent af57195 commit 2ef64ee

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

Diff for: tests/source/issue-3984.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
use a::{item /* comment */};
2+
use b::{
3+
a,
4+
// comment
5+
item,
6+
};
7+
use c::item /* comment */;
8+
use d::item; // really long comment (with `use` exactly 100 characters) ____________________________
9+
10+
use std::e::{/* it's a comment! */ bar /* and another */};
11+
use std::f::{/* it's a comment! */ bar};
12+
use std::g::{bar /* and another */};

Diff for: tests/target/issue-3984.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
use a::{item /* comment */};
2+
use b::{
3+
a,
4+
// comment
5+
item,
6+
};
7+
use c::item; /* comment */
8+
use d::item; // really long comment (with `use` exactly 100 characters) ____________________________
9+
10+
use std::e::{/* it's a comment! */ bar /* and another */};
11+
use std::f::{/* it's a comment! */ bar};
12+
use std::g::{bar /* and another */};

0 commit comments

Comments
 (0)