]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-9382.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / issue-9382.rs
1 // pretty-expanded FIXME #23616
2
3  // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 #![allow(unnecessary_allocation)]
14 #![allow(unknown_features)]
15 #![feature(box_syntax)]
16
17 // Tests for a previous bug that occurred due to an interaction
18 // between struct field initialization and the auto-coercion
19 // from a vector to a slice. The drop glue was being invoked on
20 // the temporary slice with a wrong type, triggering an LLVM assert.
21
22
23 struct Thing1<'a> {
24     baz: &'a [Box<isize>],
25     bar: Box<u64>,
26 }
27
28 struct Thing2<'a> {
29     baz: &'a [Box<isize>],
30     bar: u64,
31 }
32
33 pub fn main() {
34     let _t1_fixed = Thing1 {
35         baz: &[],
36         bar: box 32,
37     };
38     Thing1 {
39         baz: &Vec::new(),
40         bar: box 32,
41     };
42     let _t2_fixed = Thing2 {
43         baz: &[],
44         bar: 32,
45     };
46     Thing2 {
47         baz: &Vec::new(),
48         bar: 32,
49     };
50 }