2014-03-11 15:27:55 -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.
|
|
|
|
|
2014-12-22 11:04:23 -06:00
|
|
|
use std::ops::Deref;
|
|
|
|
|
2014-08-27 20:46:52 -05:00
|
|
|
struct DerefArray<'a, T:'a> {
|
2014-03-11 15:27:55 -05:00
|
|
|
inner: &'a [T]
|
|
|
|
}
|
|
|
|
|
2015-01-01 13:53:20 -06:00
|
|
|
impl<'a, T> Deref for DerefArray<'a, T> {
|
|
|
|
type Target = &'a [T];
|
|
|
|
|
2014-03-11 15:27:55 -05:00
|
|
|
fn deref<'b>(&'b self) -> &'b &'a [T] {
|
|
|
|
&self.inner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2015-01-25 15:05:03 -06:00
|
|
|
let a = &[1, 2, 3];
|
2014-03-11 15:27:55 -05:00
|
|
|
assert_eq!(DerefArray {inner: a}[1], 2);
|
|
|
|
}
|