]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/auto-ref-slice-plus-ref.rs
83acce2003c2e5004afd40264c7cc0f1bf947320
[rust.git] / src / test / compile-fail / 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
12 fn main() {
13
14     // Testing that method lookup does not automatically borrow
15     // vectors to slices then automatically create a &mut self
16     // reference.  That would allow creating a mutable pointer to a
17     // temporary, which would be a source of confusion
18
19     let mut a = vec!(0);
20     a.test_mut(); //~ ERROR does not implement any method in scope named `test_mut`
21 }
22
23 trait MyIter {
24     fn test_mut(&mut self);
25 }
26
27 impl<'a> MyIter for &'a [int] {
28     fn test_mut(&mut self) { }
29 }