Fixes to the roll-up

This commit is contained in:
Jakub Bukaj 2014-11-23 10:47:25 -05:00
parent 69a217f37c
commit d6b023a467
3 changed files with 4 additions and 2 deletions

View File

@ -990,7 +990,7 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
let i = s.chars();
let c : Vec<char> = i.map( |c| {
if c.is_ascii() {
c.to_ascii().to_lowercase().to_char()
c.to_ascii().to_lowercase().as_char()
} else {
c
}

View File

@ -13,7 +13,7 @@
fn main() {
match true {
true if true => (),
false => unsafe { },
false if false => unsafe { },
true => { }
false => (),
}

View File

@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-pretty
//
// exec-env:RUST_MIN_STACK=16000000
//
// Big stack is needed for pretty printing, a little sad...