Skip to content

Commit 6f4e078

Browse files
committed
misc: test: rm empty lines
1 parent 32a216e commit 6f4e078

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tests/ui/double_parens.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,26 @@ impl DummyStruct {
1414
fn simple_double_parens() -> i32 {
1515
((0))
1616
//~^ double_parens
17-
18-
1917
}
2018

2119
fn fn_double_parens() {
2220
dummy_fn((0));
2321
//~^ double_parens
24-
2522
}
2623

2724
fn method_double_parens(x: DummyStruct) {
2825
x.dummy_method((0));
2926
//~^ double_parens
30-
3127
}
3228

3329
fn tuple_double_parens() -> (i32, i32) {
3430
((1, 2))
3531
//~^ double_parens
36-
3732
}
3833

3934
fn unit_double_parens() {
4035
(())
4136
//~^ double_parens
42-
4337
}
4438

4539
fn fn_tuple_ok() {
@@ -63,7 +57,6 @@ fn inside_macro() {
6357
assert_eq!((1, 2), (1, 2), "Error");
6458
assert_eq!(((1, 2)), (1, 2), "Error");
6559
//~^ double_parens
66-
6760
}
6861

6962
fn main() {}

0 commit comments

Comments
 (0)