]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-9382.rs
fallout: run-pass tests that use box. (many could be ported to `Box::new` instead...
[rust.git] / src / test / run-pass / issue-9382.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 #![allow(unnecessary_allocation)]
12 #![allow(unknown_features)]
13 #![feature(box_syntax)]
14
15 // Tests for a previous bug that occurred due to an interaction
16 // between struct field initialization and the auto-coercion
17 // from a vector to a slice. The drop glue was being invoked on
18 // the temporary slice with a wrong type, triggering an LLVM assert.
19
20
21 struct Thing1<'a> {
22     baz: &'a [Box<int>],
23     bar: Box<u64>,
24 }
25
26 struct Thing2<'a> {
27     baz: &'a [Box<int>],
28     bar: u64,
29 }
30
31 pub fn main() {
32     let _t1_fixed = Thing1 {
33         baz: &[],
34         bar: box 32,
35     };
36     Thing1 {
37         baz: Vec::new().as_slice(),
38         bar: box 32,
39     };
40     let _t2_fixed = Thing2 {
41         baz: &[],
42         bar: 32,
43     };
44     Thing2 {
45         baz: Vec::new().as_slice(),
46         bar: 32,
47     };
48 }