about summary refs log tree commit diff
path: root/src/test/stdtest
diff options
context:
space:
mode:
authorMichael Sullivan <sully@msully.net>2011-08-12 15:01:13 -0700
committerMichael Sullivan <sully@msully.net>2011-08-12 15:16:01 -0700
commit2421312deab6311dc9b4cd8b610f799c07f50071 (patch)
tree89a0330ed69340772c44c620b19e11aa4955ae30 /src/test/stdtest
parent4e62c0d6cb75c514d1cd35e1f79c0bd6076948a9 (diff)
downloadrust-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.rs2
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]