about summary refs log tree commit diff
path: root/src/test/debuginfo
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-04-14 14:37:14 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-04-14 17:40:37 -0700
commite053571df21fda7bb909c1b79de9b0cbe1a2931d (patch)
tree37d18d85fa9631880c287c3795d5b4b3d8994f20 /src/test/debuginfo
parentd3da5a7e9bc924d86cfbfe541357b57693ba7d12 (diff)
downloadrust-e053571df21fda7bb909c1b79de9b0cbe1a2931d.tar.gz
rust-e053571df21fda7bb909c1b79de9b0cbe1a2931d.zip
Test fixes and rebase conflicts, round 2
Diffstat (limited to 'src/test/debuginfo')
-rw-r--r--src/test/debuginfo/function-prologue-stepping-regular.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/debuginfo/function-prologue-stepping-regular.rs b/src/test/debuginfo/function-prologue-stepping-regular.rs
index e1a77b34e7f..b34f1af01f5 100644
--- a/src/test/debuginfo/function-prologue-stepping-regular.rs
+++ b/src/test/debuginfo/function-prologue-stepping-regular.rs
@@ -126,7 +126,6 @@
 // lldb-command:continue
 
 #![allow(unused_variables)]
-#![feature(old_io)]
 #![omit_gdb_pretty_printer_section]
 
 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) {
-    std::old_io::stdio::print("Hi!")
+    println!("Hi!")
 }
 
 fn identifier(x: u64, y: u64, z: f64) -> u64 {