Skip to content

Commit 8be0cf7

Browse files
author
Jakub Bukaj
committed
Fixes to the roll-up
1 parent 69a217f commit 8be0cf7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/test/pretty/issue-19077.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
fn main() {
1414
match true {
1515
true if true => (),
16-
false => unsafe { },
16+
false if false => unsafe { },
1717
true => { }
1818
false => (),
1919
}

src/test/run-pass/super-fast-paren-parsing.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-pretty
12+
//
1113
// exec-env:RUST_MIN_STACK=16000000
1214
//
1315
// Big stack is needed for pretty printing, a little sad...

0 commit comments

Comments
 (0)