summary refs log tree commit diff
path: root/src/test/ui/issues/issue-17025.rs
blob: 6b7b6d010aa22964bee1be2079052976efb02f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// ignore-test the unsized enum no longer compiles

enum A {
    B(char),
    C([Box<A>]),
}

fn c(c:char) {
    A::B(c);
    //~^ ERROR cannot move a value of type A: the size of A cannot be statically determined
}

pub fn main() {}