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