1
Fork 0

rpass: Remove usage of fmt!

This commit is contained in:
Alex Crichton 2013-09-29 19:23:57 -07:00
parent 86e613c632
commit 630082ca89
308 changed files with 838 additions and 828 deletions

View file

@ -17,7 +17,7 @@
struct R { i: int }
fn test_rec() {
let rs = match true { true => R {i: 100}, _ => fail!() };
let rs = match true { true => R {i: 100}, _ => fail2!() };
assert_eq!(rs.i, 100);
}