diff options
| author | Brian Anderson <[email protected]> | 2011-05-02 20:48:52 -0400 |
|---|---|---|
| committer | Brian Anderson <[email protected]> | 2011-05-02 20:48:52 -0400 |
| commit | 480eda0f10fabd6e76a30c91df1d84740d6f81cc (patch) | |
| tree | 8b4532eee3c09f32a2c8323878e55e0edb5759b8 | |
| parent | Revert "Use different syntax for checks that matter to typestate" (diff) | |
| download | rust-480eda0f10fabd6e76a30c91df1d84740d6f81cc.tar.xz rust-480eda0f10fabd6e76a30c91df1d84740d6f81cc.zip | |
Use check instead of assert in export-unexported-dep
| -rw-r--r-- | src/test/run-pass/export-unexported-dep.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/export-unexported-dep.rs b/src/test/run-pass/export-unexported-dep.rs index 94ef5241..41a8cb98 100644 --- a/src/test/run-pass/export-unexported-dep.rs +++ b/src/test/run-pass/export-unexported-dep.rs @@ -15,7 +15,7 @@ mod foo { } fn g(t v) { - assert v == t1; + check (v == t1); } } |