about summary refs log tree commit diff
path: root/src/test/run-pass/class-attributes-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/class-attributes-2.rs')
-rw-r--r--src/test/run-pass/class-attributes-2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/class-attributes-2.rs b/src/test/run-pass/class-attributes-2.rs
index fa498e90503..c4dc0ac7412 100644
--- a/src/test/run-pass/class-attributes-2.rs
+++ b/src/test/run-pass/class-attributes-2.rs
@@ -18,7 +18,7 @@ impl Drop for cat {
        Actually, cats don't always land on their feet when you drop them.
     */
     fn drop(&mut self) {
-        error!("{} landed on hir feet", self.name);
+        println!("{} landed on hir feet", self.name);
     }
 }