2014-07-14 02:43:21 -05:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2015-01-07 20:53:58 -06:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2014-12-22 11:04:23 -06:00
|
|
|
use std::ops::Index;
|
|
|
|
|
2014-07-14 02:43:21 -05:00
|
|
|
struct MyVec<T> {
|
|
|
|
data: Vec<T>,
|
|
|
|
}
|
|
|
|
|
2015-01-08 05:02:42 -06:00
|
|
|
impl<T> Index<usize> for MyVec<T> {
|
2015-01-03 09:40:36 -06:00
|
|
|
type Output = T;
|
|
|
|
|
2015-01-08 05:02:42 -06:00
|
|
|
fn index(&self, &i: &usize) -> &T {
|
2014-10-15 01:05:01 -05:00
|
|
|
&self.data[i]
|
2014-07-14 02:43:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-01-31 10:23:42 -06:00
|
|
|
let v = MyVec { data: vec!(box 1, box 2, box 3) };
|
2014-07-14 02:43:21 -05:00
|
|
|
let good = &v[0]; // Shouldn't fail here
|
|
|
|
let bad = v[0];
|
2015-01-08 08:12:06 -06:00
|
|
|
//~^ ERROR cannot move out of indexed content
|
2014-07-14 02:43:21 -05:00
|
|
|
}
|