Revert "Use check instead of assert in export-unexported-dep"

This reverts commit 480eda0f10. The commit
adding the assert keyword has been restored.
This commit is contained in:
Brian Anderson 2011-05-02 20:53:18 -04:00
parent 5d1c8dbfa9
commit 2fc58fc6a0

View file

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