summary refs log tree commit diff
path: root/tests/ui/empty-allocation-non-null.rs
blob: 45035a42a5f854317fe2a400e3cfc531b8d28182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ run-pass

pub fn main() {
    assert!(Some(Box::new(())).is_some());

    let xs: Box<[()]> = Box::<[(); 0]>::new([]);
    assert!(Some(xs).is_some());

    struct Foo;
    assert!(Some(Box::new(Foo)).is_some());

    let ys: Box<[Foo]> = Box::<[Foo; 0]>::new([]);
    assert!(Some(ys).is_some());
}