1
Fork 0

librustc: Remove fail_unless!

This commit is contained in:
Patrick Walton 2013-03-28 18:39:09 -07:00 committed by Brian Anderson
parent a17a9d41f6
commit 1e91595520
862 changed files with 5898 additions and 5911 deletions

View file

@ -23,6 +23,6 @@ fn gg<T:Bar>(a: &T) -> int {
pub fn main() {
let a = &A { x: 3 };
fail_unless!(gg(a) == 10);
assert!(gg(a) == 10);
}