]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/auto-ref-slice-plus-ref.rs
Ignore tests broken by failing on ICE
[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 #![feature(managed_boxes)]
15
16 trait MyIter {
17     fn test_imm(&self);
18 }
19
20 impl<'a> MyIter for &'a [int] {
21     fn test_imm(&self) { assert_eq!(self[0], 1) }
22 }
23
24 impl<'a> MyIter for &'a str {
25     fn test_imm(&self) { assert_eq!(*self, "test") }
26 }
27
28 pub fn main() {
29     // NB: Associativity of ~, etc. in this context is surprising. These must be parenthesized
30
31     ([1]).test_imm();
32     (vec!(1)).as_slice().test_imm();
33     (&[1]).test_imm();
34     ("test").test_imm();
35     ("test".to_owned()).test_imm();
36     ("test").test_imm();
37
38     // FIXME: 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 }