Skip to content

Commit

Permalink
Test that unsized locals fail when turning unsized_fn_params feature …
Browse files Browse the repository at this point in the history
…flag on
  • Loading branch information
spastorino committed Oct 27, 2020
1 parent f0a71f7 commit a3470b1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
@@ -0,0 +1,7 @@
#![feature(unsized_fn_params)]

fn main() {
let foo: Box<[u8]> = Box::new(*b"foo");
let _foo: [u8] = *foo;
//~^ ERROR: the size for values of type `[u8]` cannot be known at compilation time [E0277]
}
@@ -0,0 +1,13 @@
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
--> $DIR/unsized-locals-using-unsized-fn-params.rs:5:9
|
LL | let _foo: [u8] = *foo;
| ^^^^ doesn't have a size known at compile-time
|
= help: the trait `Sized` is not implemented for `[u8]`
= note: all local variables must have a statically known size
= help: unsized locals are gated as an unstable feature

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.

0 comments on commit a3470b1

Please sign in to comment.