Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/test/ui/unsized/return-unsized-from-trait-method.rs
Original file line number Diff line number Diff line change
@@ -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) }
9 changes: 9 additions & 0 deletions src/test/ui/unsized/return-unsized-from-trait-method.stderr
Original file line number Diff line number Diff line change
@@ -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`.