summaryrefslogtreecommitdiffstats
path: root/tests/ui/unsized-locals/issue-67981.rs
blob: 3eb6498e9dcff64e43acba36568df6a1331d0605 (plain)
1
2
3
4
5
6
7
8
9
#![feature(unsized_fn_params)]

fn main() {
    let f: fn([u8]) = |_| {};
    //~^ERROR the size for values of type `[u8]` cannot be known at compilation time
    let slice: Box<[u8]> = Box::new([1; 8]);

    f(*slice);
}