diff options
| author | Michael Sullivan <sully@msully.net> | 2011-08-12 15:01:13 -0700 |
|---|---|---|
| committer | Michael Sullivan <sully@msully.net> | 2011-08-12 15:16:01 -0700 |
| commit | 2421312deab6311dc9b4cd8b610f799c07f50071 (patch) | |
| tree | 89a0330ed69340772c44c620b19e11aa4955ae30 /src/test/stdtest | |
| parent | 4e62c0d6cb75c514d1cd35e1f79c0bd6076948a9 (diff) | |
| download | rust-2421312deab6311dc9b4cd8b610f799c07f50071.tar.gz rust-2421312deab6311dc9b4cd8b610f799c07f50071.zip | |
Don't rely on binop autoderef in the compiler.
Diffstat (limited to 'src/test/stdtest')
| -rw-r--r-- | src/test/stdtest/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/stdtest/test.rs b/src/test/stdtest/test.rs index fd6f8831bf9..6526ee6531b 100644 --- a/src/test/stdtest/test.rs +++ b/src/test/stdtest/test.rs @@ -13,7 +13,7 @@ fn do_not_run_ignored_tests() { test::run_test(desc, test::default_test_to_task); - assert (ran == false); + assert (*ran == false); } #[test] |
