Test that unsized locals fail when turning unsized_fn_params feature flag on
This commit is contained in:
parent
f0a71f7f4d
commit
a3470b13ab
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`.
|
Loading…
Add table
Add a link
Reference in a new issue