Use check instead of assert in export-unexported-dep

This commit is contained in:
Brian Anderson 2011-05-02 20:48:52 -04:00
parent d08b443fff
commit 480eda0f10
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ mod foo {
}
fn g(t v) {
assert v == t1;
check (v == t1);
}
}