librustc: Convert all uses of assert over to fail_unless!

This commit is contained in:
Patrick Walton
2013-03-06 13:58:02 -08:00
parent 0ea031bcb8
commit d7e74b5e91
817 changed files with 6378 additions and 6335 deletions

View File

@@ -18,5 +18,5 @@ mod pancakes {
}
pub fn main() {
assert pancakes::syrup::foo() == 10;
fail_unless!(pancakes::syrup::foo() == 10);
}