]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/dst-deref-mut.rs
auto merge of #17654 : gereeter/rust/no-unnecessary-cell, r=alexcrichton
[rust.git] / src / test / run-pass / dst-deref-mut.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
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
11 // Test that a custom deref with a fat pointer return type does not ICE
12
13 pub struct Arr {
14     ptr: Box<[uint]>
15 }
16
17 impl Deref<[uint]> for Arr {
18     fn deref(&self) -> &[uint] {
19         fail!();
20     }
21 }
22
23 impl DerefMut<[uint]> for Arr {
24     fn deref_mut(&mut self) -> &mut [uint] {
25         &mut *self.ptr
26     }
27 }
28
29 pub fn foo(arr: &mut Arr) {
30     let x: &mut [uint] = &mut **arr;
31     assert!(x[0] == 1);
32     assert!(x[1] == 2);
33     assert!(x[2] == 3);
34 }
35
36 fn main() {
37     let mut a = Arr { ptr: box [1, 2, 3] };
38     foo(&mut a);
39 }