File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: afe792496a69e30ea313ca5ff181430e44aeb69b
2
+ refs/heads/master: 810927824ce13a56bc80d47a7a71802777dde7d5
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ fn f() { }
4
4
5
5
fn block_semi ( ) -> int { { f ( ) } ; -1 }
6
6
7
- fn block_nosemi ( ) -> int { { 0 } - 1 }
7
+ fn block_nosemi ( ) -> int { ( { 0 } ) - 1 }
8
8
9
9
fn if_semi ( ) -> int { if true { f ( ) } else { f ( ) } ; -1 }
10
10
11
- fn if_nosemi ( ) -> int { if true { 0 } else { 0 } - 1 }
11
+ fn if_nosemi ( ) -> int { ( if true { 0 } else { 0 } ) - 1 }
12
12
13
13
fn alt_semi ( ) -> int { alt true { true { f( ) } } ; -1 }
14
14
15
- fn alt_no_semi ( ) -> int { alt true { true { 0 } } - 1 }
15
+ fn alt_no_semi ( ) -> int { ( alt true { true { 0 } } ) - 1 }
16
16
17
17
fn stmt ( ) { { f ( ) } ; -1 ; }
You can’t perform that action at this time.
0 commit comments