2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2011-09-19 16:20:15 -05:00
|
|
|
// error-pattern:fail
|
|
|
|
|
2014-03-05 17:28:08 -06:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
fn build1() -> Vec<isize> {
|
2016-05-26 21:39:36 -05:00
|
|
|
vec![0, 0, 0, 0, 0, 0, 0]
|
2011-09-19 16:20:15 -05:00
|
|
|
}
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
fn build2() -> Vec<isize> {
|
2014-10-09 14:17:22 -05:00
|
|
|
panic!();
|
2011-09-19 16:20:15 -05:00
|
|
|
}
|
|
|
|
|
2016-05-26 21:39:36 -05:00
|
|
|
struct Blk {
|
|
|
|
node: Vec<isize>,
|
|
|
|
span: Vec<isize>,
|
|
|
|
}
|
2013-01-26 02:25:41 -06:00
|
|
|
|
2011-09-19 16:20:15 -05:00
|
|
|
fn main() {
|
2013-08-17 10:37:42 -05:00
|
|
|
let _blk = Blk {
|
2011-09-19 16:20:15 -05:00
|
|
|
node: build1(),
|
2016-05-26 21:39:36 -05:00
|
|
|
span: build2(),
|
2011-09-19 16:20:15 -05:00
|
|
|
};
|
2013-01-31 19:51:01 -06:00
|
|
|
}
|