Sha256: d4a998b7f6a0378d179a9d32ecf45c5e20da5f25bce559a26e603bb785c6b9fb

Contents?: true

Size: 772 Bytes

Versions: 2

Compression:

Stored size: 772 Bytes

Contents

error[E0061]: this function takes 0 arguments but 1 argument was supplied
  --> tests/ui/pinned_drop/call-drop-inner.rs:12:13
   |
12 |             __drop_inner(this);
   |             ^^^^^^^^^^^^ ---- unexpected argument of type `Pin<&mut S>`
   |
note: function defined here
  --> tests/ui/pinned_drop/call-drop-inner.rs:5:1
   |
5  | / pin_project! {
6  | |     pub struct S {
7  | |         #[pin]
8  | |         field: u8,
...  |
15 | | }
   | |_^
   = note: this error originates in the macro `$crate::__pin_project_make_drop_impl` which comes from the expansion of the macro `pin_project` (in Nightly builds, run with -Z macro-backtrace for more info)
help: remove the extra argument
   |
12 -             __drop_inner(this);
12 +             __drop_inner();
   |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/pin-project-lite-0.2.16/tests/ui/pinned_drop/call-drop-inner.stderr
wasmtime-28.0.0 ./ext/cargo-vendor/pin-project-lite-0.2.16/tests/ui/pinned_drop/call-drop-inner.stderr