pretty: Remove usage of fmt!

This commit is contained in:
Alex Crichton 2013-09-30 10:46:00 -07:00
parent 9ce31f6dd9
commit 1f52cf439b
3 changed files with 3 additions and 3 deletions

View File

@ -110,6 +110,6 @@ fn main() {
'\u2028', '\u2029', '\u202F', '\u205F', '\u3000'];
for c in chars.iter() {
let ws = c.is_whitespace();
println(fmt!("%? %?" , c , ws));
println!("{:?} {:?}" , c , ws);
}
}

View File

@ -104,6 +104,6 @@ fn main() {
'\u2028', '\u2029', '\u202F', '\u205F', '\u3000'];
for c in chars.iter() {
let ws = c.is_whitespace();
println(fmt!("%? %?", c , ws));
println!("{:?} {:?}", c , ws);
}
}

View File

@ -8,6 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
fn f() { if (1 == fail!()) { } else { } }
fn f() { if (1 == fail2!()) { } else { } }
fn main() { }