Skip to content

Commit 63f7f5a

Browse files
committed
Fix tidy
1 parent b0ea916 commit 63f7f5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ui/suggestions/incorrect-variant-literal.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ fn main() {
2727
Enum::Tuple(0, 0);
2828
Enum::Struct(0, 0);
2929
Enum::Unit { x: 0, y: 0 };
30-
30+
3131
Enum::Tuple { x: 0, y: 0 };
32-
32+
3333
Enum::Struct { x: 0, y: 0 };
3434
Enum::unit;
3535
Enum::tuple;

0 commit comments

Comments
 (0)