]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/trait-pointers.rs
Auto merge of #23934 - lfairy:write-no-deref, r=alexcrichton
[rust.git] / src / test / debuginfo / trait-pointers.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 // min-lldb-version: 310
12
13 // compile-flags:-g
14 // gdb-command:run
15 // lldb-command:run
16
17 #![allow(unused_variables)]
18 #![feature(box_syntax)]
19 #![omit_gdb_pretty_printer_section]
20
21 trait Trait {
22     fn method(&self) -> isize { 0 }
23 }
24
25 struct Struct {
26     a: isize,
27     b: f64
28 }
29
30 impl Trait for Struct {}
31
32 // There is no real test here yet. Just make sure that it compiles without crashing.
33 fn main() {
34     let stack_struct = Struct { a:0, b: 1.0 };
35     let reference: &Trait = &stack_struct as &Trait;
36     let unique: Box<Trait> = box Struct { a:2, b: 3.0 } as Box<Trait>;
37 }