diff options
Diffstat (limited to 'tests/ui/pattern/bindings-after-at/bind-by-move-no-subbindings-fun-param.stderr')
-rw-r--r-- | tests/ui/pattern/bindings-after-at/bind-by-move-no-subbindings-fun-param.stderr | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/pattern/bindings-after-at/bind-by-move-no-subbindings-fun-param.stderr b/tests/ui/pattern/bindings-after-at/bind-by-move-no-subbindings-fun-param.stderr new file mode 100644 index 000000000..a481ca468 --- /dev/null +++ b/tests/ui/pattern/bindings-after-at/bind-by-move-no-subbindings-fun-param.stderr @@ -0,0 +1,13 @@ +error[E0382]: use of partially moved value + --> $DIR/bind-by-move-no-subbindings-fun-param.rs:7:6 + | +LL | fn f(a @ A(u): A) -> Box<u8> { + | ^ - value partially moved here + | | + | value used here after partial move + | + = note: partial move occurs because value has type `Box<u8>`, which does not implement the `Copy` trait + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0382`. |