Add regression test for #26376
This commit is contained in:
parent
3360cc3a0e
commit
1474face6f
2 changed files with 25 additions and 0 deletions
16
src/test/ui/unsized/return-unsized-from-trait-method.rs
Normal file
16
src/test/ui/unsized/return-unsized-from-trait-method.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
// ignore-tidy-linelength
|
||||
|
||||
// regression test for #26376
|
||||
|
||||
trait Foo {
|
||||
fn foo(&self) -> [u8];
|
||||
}
|
||||
|
||||
fn foo(f: Option<&dyn Foo>) {
|
||||
if let Some(f) = f {
|
||||
let _ = f.foo();
|
||||
//~^ ERROR cannot move a value of type [u8]: the size of [u8] cannot be statically determined
|
||||
}
|
||||
}
|
||||
|
||||
fn main() { foo(None) }
|
|
@ -0,0 +1,9 @@
|
|||
error[E0161]: cannot move a value of type [u8]: the size of [u8] cannot be statically determined
|
||||
--> $DIR/return-unsized-from-trait-method.rs:11:17
|
||||
|
|
||||
LL | let _ = f.foo();
|
||||
| ^^^^^^^
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0161`.
|
Loading…
Add table
Add a link
Reference in a new issue