Skip to content

Commit d6b023a

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

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/compiletest/runtest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
990990
let i = s.chars();
991991
let c : Vec<char> = i.map( |c| {
992992
if c.is_ascii() {
993-
c.to_ascii().to_lowercase().to_char()
993+
c.to_ascii().to_lowercase().as_char()
994994
} else {
995995
c
996996
}

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)