• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0061]: this function takes 0 arguments but 1 argument was supplied
2  --> tests/ui/pinned_drop/call-drop-inner.rs:13:9
3   |
413 |         __drop_inner(__self);
5   |         ^^^^^^^^^^^^ ------ argument of type `Pin<&mut Struct>` unexpected
6   |
7note: function defined here
8  --> tests/ui/pinned_drop/call-drop-inner.rs:10:1
9   |
1010 | #[pinned_drop]
11   | ^^^^^^^^^^^^^^
12   = note: this error originates in the attribute macro `pinned_drop` (in Nightly builds, run with -Z macro-backtrace for more info)
13help: remove the extra argument
14   |
1513 |         __drop_inner();
16   |         ~~~~~~~~~~~~~~
17