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 15:11:26 -05:00
|
|
|
// error-pattern:fail
|
|
|
|
|
2014-03-05 17:28:08 -06:00
|
|
|
|
2014-03-05 16:02:44 -06:00
|
|
|
fn build() -> Vec<int> {
|
2014-10-09 14:17:22 -05:00
|
|
|
panic!();
|
2011-09-19 15:11:26 -05:00
|
|
|
}
|
|
|
|
|
2014-03-05 16:02:44 -06:00
|
|
|
struct Blk { node: Vec<int> }
|
2013-01-26 02:25:41 -06:00
|
|
|
|
2011-09-19 15:11:26 -05:00
|
|
|
fn main() {
|
2013-08-17 10:37:42 -05:00
|
|
|
let _blk = Blk {
|
2011-09-19 15:11:26 -05:00
|
|
|
node: build()
|
|
|
|
};
|
2013-01-31 19:51:01 -06:00
|
|
|
}
|