2014-11-06 16:49:08 +00:00
|
|
|
// Copyright 2013-2014 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.
|
|
|
|
|
2015-01-08 01:25:56 +00:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2014-11-06 16:49:08 +00:00
|
|
|
use std::default::Default;
|
|
|
|
|
2014-12-31 04:32:49 +00:00
|
|
|
#[derive(Default)]
|
2014-11-06 16:49:08 +00:00
|
|
|
struct A {
|
|
|
|
foo: Box<[bool]>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let a: A = Default::default();
|
2015-02-15 08:52:21 +00:00
|
|
|
let b: Box<[_]> = Box::<[bool; 0]>::new([]);
|
2014-11-06 16:49:08 +00:00
|
|
|
assert_eq!(a.foo, b);
|
|
|
|
}
|