]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/auto-ref-slice-plus-ref.rs
librustc: Remove `&const` and `*const` from the language.
[rust.git] / src / test / run-pass / auto-ref-slice-plus-ref.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Testing that method lookup automatically both borrows vectors to slices
12 // and also references them to create the &self pointer
13
14 trait MyIter {
15     fn test_imm(&self);
16 }
17
18 impl<'self> MyIter for &'self [int] {
19     fn test_imm(&self) { assert_eq!(self[0], 1) }
20 }
21
22 impl<'self> MyIter for &'self str {
23     fn test_imm(&self) { assert_eq!(*self, "test") }
24 }
25
26 pub fn main() {
27     // NB: Associativity of ~, etc. in this context is surprising. These must be parenthesized
28
29     ([1]).test_imm();
30     (~[1]).test_imm();
31     (@[1]).test_imm();
32     (&[1]).test_imm();
33     ("test").test_imm();
34     (~"test").test_imm();
35     (@"test").test_imm();
36     (&"test").test_imm();
37
38     // XXX: Other types of mutable vecs don't currently exist
39
40     // NB: We don't do this double autoreffing for &mut self because that would
41     // allow creating a mutable pointer to a temporary, which would be a source
42     // of confusion
43 }