1error[E0061]: this function takes 0 arguments but 1 argument was supplied 2 --> tests/ui/pinned_drop/call-drop-inner.rs:10:13 3 | 410 | __drop_inner(this); 5 | ^^^^^^^^^^^^ ---- supplied 1 argument 6 | | 7 | expected 0 arguments 8 | 9note: function defined here 10 --> tests/ui/pinned_drop/call-drop-inner.rs:3:1 11 | 123 | / pin_project! { 134 | | pub struct S { 145 | | #[pin] 156 | | field: u8, 16... | 1712 | | } 1813 | | } 19 | |_^ 20 = note: this error originates in the macro `$crate::__pin_project_internal` (in Nightly builds, run with -Z macro-backtrace for more info) 21