about summary refs log tree commit diff
path: root/src/test/run-pass/iface-to-str.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/iface-to-str.rs')
-rw-r--r--src/test/run-pass/iface-to-str.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/run-pass/iface-to-str.rs b/src/test/run-pass/iface-to-str.rs
index cf30cefbd33..1490ec3d93f 100644
--- a/src/test/run-pass/iface-to-str.rs
+++ b/src/test/run-pass/iface-to-str.rs
@@ -6,7 +6,7 @@ impl of to_str for int {
     fn to_str() -> str { int::str(self) }
 }
 
-impl <T: to_str> of to_str for [T] {
+impl <T: to_str> of to_str for [T]/~ {
     fn to_str() -> str {
         "[" + str::connect(vec::map(self, {|e| e.to_str()}), ", ") + "]"
     }
@@ -14,15 +14,15 @@ impl <T: to_str> of to_str for [T] {
 
 fn main() {
     assert 1.to_str() == "1";
-    assert [2, 3, 4].to_str() == "[2, 3, 4]";
+    assert [2, 3, 4]/~.to_str() == "[2, 3, 4]";
 
     fn indirect<T: to_str>(x: T) -> str {
         x.to_str() + "!"
     }
-    assert indirect([10, 20]) == "[10, 20]!";
+    assert indirect([10, 20]/~) == "[10, 20]!";
 
     fn indirect2<T: to_str>(x: T) -> str {
         indirect(x)
     }
-    assert indirect2([1]) == "[1]!";
+    assert indirect2([1]/~) == "[1]!";
 }