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

View File

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