]> git.proxmox.com Git - rustc.git/blob - src/test/run-pass/dst-deref-mut.rs
New upstream version 1.19.0+dfsg1
[rustc.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
14 use std::ops::{Deref, DerefMut};
15
16 pub struct Arr {
17 ptr: Box<[usize]>
18 }
19
20 impl Deref for Arr {
21 type Target = [usize];
22
23 fn deref(&self) -> &[usize] {
24 panic!();
25 }
26 }
27
28 impl DerefMut for Arr {
29 fn deref_mut(&mut self) -> &mut [usize] {
30 &mut *self.ptr
31 }
32 }
33
34 pub fn foo(arr: &mut Arr) {
35 let x: &mut [usize] = &mut **arr;
36 assert_eq!(x[0], 1);
37 assert_eq!(x[1], 2);
38 assert_eq!(x[2], 3);
39 }
40
41 fn main() {
42 let mut a = Arr { ptr: Box::new([1, 2, 3]) };
43 foo(&mut a);
44 }