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.
|
|
|
|
|
2012-12-06 18:29:17 -06:00
|
|
|
// Testing that method lookup automatically both borrows vectors to slices
|
|
|
|
// and also references them to create the &self pointer
|
|
|
|
|
2013-12-12 01:17:54 -06:00
|
|
|
|
2012-12-06 18:29:17 -06:00
|
|
|
trait MyIter {
|
2013-03-22 13:23:21 -05:00
|
|
|
fn test_imm(&self);
|
2012-12-06 18:29:17 -06:00
|
|
|
}
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
impl<'a> MyIter for &'a [int] {
|
2013-05-01 07:49:48 -05:00
|
|
|
fn test_imm(&self) { assert_eq!(self[0], 1) }
|
2012-12-06 18:29:17 -06:00
|
|
|
}
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
impl<'a> MyIter for &'a str {
|
2013-05-01 07:49:48 -05:00
|
|
|
fn test_imm(&self) { assert_eq!(*self, "test") }
|
2012-12-06 18:29:17 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-12-06 18:29:17 -06:00
|
|
|
([1]).test_imm();
|
2014-03-05 17:28:08 -06:00
|
|
|
(vec!(1)).as_slice().test_imm();
|
2012-12-06 18:29:17 -06:00
|
|
|
(&[1]).test_imm();
|
|
|
|
("test").test_imm();
|
2014-05-01 00:32:13 -05:00
|
|
|
("test").test_imm();
|
2012-12-06 18:29:17 -06:00
|
|
|
|
2014-01-26 02:43:42 -06:00
|
|
|
// FIXME: Other types of mutable vecs don't currently exist
|
2012-12-06 18:29:17 -06:00
|
|
|
|
|
|
|
// NB: We don't do this double autoreffing for &mut self because that would
|
|
|
|
// allow creating a mutable pointer to a temporary, which would be a source
|
|
|
|
// of confusion
|
|
|
|
}
|