pretty: Remove usage of fmt!
This commit is contained in:
parent
9ce31f6dd9
commit
1f52cf439b
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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() { }
|
||||
|
Loading…
Reference in New Issue
Block a user