]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-16774.rs
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / run-pass / issue-16774.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 #![feature(box_syntax)]
12 #![feature(box_patterns)]
13
14 use std::ops::{Deref, DerefMut};
15
16 struct X(Box<isize>);
17
18 static mut DESTRUCTOR_RAN: bool = false;
19
20 impl Drop for X {
21     fn drop(&mut self) {
22         unsafe {
23             assert!(!DESTRUCTOR_RAN);
24             DESTRUCTOR_RAN = true;
25         }
26     }
27 }
28
29 impl Deref for X {
30     type Target = isize;
31
32     fn deref(&self) -> &isize {
33         let &X(box ref x) = self;
34         x
35     }
36 }
37
38 impl DerefMut for X {
39     fn deref_mut(&mut self) -> &mut isize {
40         let &mut X(box ref mut x) = self;
41         x
42     }
43 }
44
45 fn main() {
46     {
47         let mut test = X(box 5);
48         {
49             let mut change = || { *test = 10 };
50             change();
51         }
52         assert_eq!(*test, 10);
53     }
54     assert!(unsafe { DESTRUCTOR_RAN });
55 }