blob: 3eb6498e9dcff64e43acba36568df6a1331d0605 [file] [log] [blame] [edit]
#![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);
}