1
Fork 0

Test fixes and rebase conflicts, round 2

This commit is contained in:
Alex Crichton 2015-04-14 14:37:14 -07:00
parent d3da5a7e9b
commit e053571df2
3 changed files with 2 additions and 3 deletions

View file

@ -126,7 +126,6 @@
// lldb-command:continue // lldb-command:continue
#![allow(unused_variables)] #![allow(unused_variables)]
#![feature(old_io)]
#![omit_gdb_pretty_printer_section] #![omit_gdb_pretty_printer_section]
fn immediate_args(a: isize, b: bool, c: f64) { fn immediate_args(a: isize, b: bool, c: f64) {
@ -157,7 +156,7 @@ fn assignment(mut a: u64, b: u64, c: f64) {
} }
fn function_call(x: u64, y: u64, z: f64) { fn function_call(x: u64, y: u64, z: f64) {
std::old_io::stdio::print("Hi!") println!("Hi!")
} }
fn identifier(x: u64, y: u64, z: f64) -> u64 { fn identifier(x: u64, y: u64, z: f64) -> u64 {

View file

@ -9,6 +9,7 @@
// except according to those terms. // except according to those terms.
// no-prefer-dynamic // no-prefer-dynamic
// ignore-android
#![feature(rustc_private)] #![feature(rustc_private)]

View file

@ -63,5 +63,4 @@ fn test() {
// drop-glue should detect the corruption of (at least one of) // drop-glue should detect the corruption of (at least one of)
// the drop-flags. // the drop-flags.
} }
println!("We should never get here.");
} }