]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/auto-ref-slice-plus-ref.rs
Replace all ~"" with "".to_owned()
[rust.git] / src / test / run-pass / auto-ref-slice-plus-ref.rs
index 58a477900c3248113495824c2ca5d685d8195516..8e0bdfdc74076620176e365d0f818a2553f7817c 100644 (file)
 // Testing that method lookup automatically both borrows vectors to slices
 // and also references them to create the &self pointer
 
+#![feature(managed_boxes)]
+
 trait MyIter {
     fn test_imm(&self);
-    fn test_const(&const self);
 }
 
-impl<'self> MyIter for &'self [int] {
+impl<'a> MyIter for &'a [int] {
     fn test_imm(&self) { assert_eq!(self[0], 1) }
-    fn test_const(&const self) { assert_eq!(self[0], 1) }
 }
 
-impl<'self> MyIter for &'self str {
+impl<'a> MyIter for &'a str {
     fn test_imm(&self) { assert_eq!(*self, "test") }
-    fn test_const(&const self) { assert_eq!(self[0], 't' as u8) }
 }
 
 pub fn main() {
     // NB: Associativity of ~, etc. in this context is surprising. These must be parenthesized
 
     ([1]).test_imm();
-    (~[1]).test_imm();
-    (@[1]).test_imm();
+    (vec!(1)).as_slice().test_imm();
     (&[1]).test_imm();
     ("test").test_imm();
-    (~"test").test_imm();
-    (@"test").test_imm();
+    ("test".to_owned()).test_imm();
     (&"test").test_imm();
 
-    // XXX: Other types of mutable vecs don't currently exist
-
-    ([1]).test_const();
-    (~[1]).test_const();
-    (@[1]).test_const();
-    (&[1]).test_const();
-    ("test").test_const();
-    (~"test").test_const();
-    (@"test").test_const();
-    (&"test").test_const();
+    // FIXME: Other types of mutable vecs don't currently exist
 
     // NB: We don't do this double autoreffing for &mut self because that would
     // allow creating a mutable pointer to a temporary, which would be a source