summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dst/dst-rvalue.rs
blob: fbb32cac1284d36004bb74fe0321ad3b16fec95b (plain)
1
2
3
4
5
6
7
8
9
10
// Check that dynamically sized rvalues are forbidden

pub fn main() {
    let _x: Box<str> = Box::new(*"hello world");
    //~^ ERROR E0277

    let array: &[isize] = &[1, 2, 3];
    let _x: Box<[isize]> = Box::new(*array);
    //~^ ERROR E0277
}