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