2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-12-12 01:17:54 -06:00
|
|
|
|
2012-12-06 18:29:17 -06:00
|
|
|
fn main() {
|
|
|
|
|
|
|
|
// Testing that method lookup does not automatically borrow
|
|
|
|
// vectors to slices then automatically create a &mut self
|
|
|
|
// reference. That would allow creating a mutable pointer to a
|
|
|
|
// temporary, which would be a source of confusion
|
|
|
|
|
2014-03-05 16:02:44 -06:00
|
|
|
let mut a = vec!(0);
|
2013-01-30 19:07:35 -06:00
|
|
|
a.test_mut(); //~ ERROR does not implement any method in scope named `test_mut`
|
2012-12-06 18:29:17 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
trait MyIter {
|
2013-03-22 13:23:21 -05:00
|
|
|
fn test_mut(&mut self);
|
2012-12-06 18:29:17 -06:00
|
|
|
}
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
impl<'a> MyIter for &'a [int] {
|
2013-03-22 13:23:21 -05:00
|
|
|
fn test_mut(&mut self) { }
|
2012-12-06 18:29:17 -06:00
|
|
|
}
|