]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/auto-ref-slice-plus-ref.rs
New upstream version 1.14.0+dfsg1
[rustc.git] / src / test / compile-fail / auto-ref-slice-plus-ref.rs
CommitLineData
1a4d82fc 1// Copyright 2012-14 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
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
1a4d82fc 11
223e47cc
LB
12fn main() {
13
14 // Testing that method lookup does not automatically borrow
1a4d82fc 15 // vectors to slices then automatically create a self reference.
223e47cc 16
c30ab7b3 17 let mut a = vec![0];
d9579d0f
AL
18 a.test_mut(); //~ ERROR no method named `test_mut` found
19 a.test(); //~ ERROR no method named `test` found
1a4d82fc 20
d9579d0f
AL
21 ([1]).test(); //~ ERROR no method named `test` found
22 (&[1]).test(); //~ ERROR no method named `test` found
223e47cc
LB
23}
24
25trait MyIter {
26 fn test_mut(&mut self);
1a4d82fc
JJ
27 fn test(&self);
28}
29
30impl<'a> MyIter for &'a [isize] {
31 fn test_mut(&mut self) { }
32 fn test(&self) { }
223e47cc
LB
33}
34
1a4d82fc 35impl<'a> MyIter for &'a str {
223e47cc 36 fn test_mut(&mut self) { }
1a4d82fc 37 fn test(&self) { }
223e47cc 38}