]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-5008-borrowed-traitobject-method-call.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / issue-5008-borrowed-traitobject-method-call.rs
1 // Copyright 2013 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 /*
12
13 #5008 cast to &Trait causes code to segfault on method call
14
15 It fixes itself if the &Trait is changed to @Trait.
16 */
17
18 trait Debuggable {
19     fn debug_name(&self) -> String;
20 }
21
22 #[derive(Clone)]
23 struct Thing {
24     name: String,
25 }
26
27 impl Thing {
28     fn new() -> Thing { Thing { name: "dummy".to_string() } }
29 }
30
31 impl Debuggable for Thing {
32     fn debug_name(&self) -> String { self.name.clone() }
33 }
34
35 fn print_name(x: &Debuggable)
36 {
37     println!("debug_name = {}", x.debug_name());
38 }
39
40 pub fn main() {
41     let thing = Thing::new();
42     print_name(&thing as &Debuggable);
43 }