]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-4252.rs
std: Rename Show/String to Debug/Display
[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 trait X {
14     fn call<T: std::fmt::Debug>(&self, x: &T);
15     fn default_method<T: std::fmt::Debug>(&self, x: &T) {
16         println!("X::default_method {:?}", x);
17     }
18 }
19
20 #[derive(Debug)]
21 struct Y(int);
22
23 #[derive(Debug)]
24 struct Z<T> {
25     x: T
26 }
27
28 impl X for Y {
29     fn call<T: std::fmt::Debug>(&self, x: &T) {
30         println!("X::call {:?} {:?}", self, x);
31     }
32 }
33
34 #[unsafe_destructor]
35 impl<T: X + std::fmt::Debug> 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 }