]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-4252.rs
auto merge of #13738 : buttslol/rust/armv7-support, r=alexcrichton
[rust.git] / src / test / run-pass / issue-4252.rs
1 // Copyright 2013-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 extern crate debug;
12
13 trait X {
14     fn call<T>(&self, x: &T);
15     fn default_method<T>(&self, x: &T) {
16         println!("X::default_method {:?} {:?}", self, x);
17     }
18 }
19
20 struct Y(int);
21
22 struct Z<T> {
23     x: T
24 }
25
26 impl X for Y {
27     fn call<T>(&self, x: &T) {
28         println!("X::call {:?} {:?}", self, x);
29     }
30 }
31
32 #[unsafe_destructor]
33 impl<T: X> Drop for Z<T> {
34     fn drop(&mut self) {
35         // These statements used to cause an ICE.
36         self.x.call(self);
37         self.x.default_method(self);
38     }
39 }
40
41 pub fn main() {
42     let _z = Z {x: Y(42)};
43 }