2014-04-02 17:23:52 -04:00
|
|
|
// Copyright 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-02-15 09:52:21 +01:00
|
|
|
// FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
|
2015-01-08 02:25:56 +01:00
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2014-04-02 17:23:52 -04:00
|
|
|
pub fn main() {
|
2015-02-15 09:52:21 +01:00
|
|
|
assert!(Some(Box::new(())).is_some());
|
2014-04-02 17:23:52 -04:00
|
|
|
|
2015-02-15 09:52:21 +01:00
|
|
|
let xs: Box<[()]> = Box::<[(); 0]>::new([]);
|
2014-09-08 19:27:06 -04:00
|
|
|
assert!(Some(xs).is_some());
|
|
|
|
|
2014-04-02 17:23:52 -04:00
|
|
|
struct Foo;
|
2015-02-15 09:52:21 +01:00
|
|
|
assert!(Some(Box::new(Foo)).is_some());
|
2014-09-08 19:27:06 -04:00
|
|
|
|
2015-02-15 09:52:21 +01:00
|
|
|
let ys: Box<[Foo]> = Box::<[Foo; 0]>::new([]);
|
2014-09-08 19:27:06 -04:00
|
|
|
assert!(Some(ys).is_some());
|
2014-04-02 17:23:52 -04:00
|
|
|
}
|