]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-9382.rs
Ignore tests broken by failing on ICE
[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
20 struct Thing1<'a> {
21     baz: &'a [~int],
22     bar: ~u64,
23 }
24
25 struct Thing2<'a> {
26     baz: &'a [~int],
27     bar: u64,
28 }
29
30 pub fn main() {
31     let _t1_fixed = Thing1 {
32         baz: &[],
33         bar: ~32,
34     };
35     Thing1 {
36         baz: Vec::new().as_slice(),
37         bar: ~32,
38     };
39     let _t2_fixed = Thing2 {
40         baz: &[],
41         bar: 32,
42     };
43     Thing2 {
44         baz: Vec::new().as_slice(),
45         bar: 32,
46     };
47 }