Skip to content

Commit

Permalink
tests: Update ui test output to nightly-2024-07-09
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jul 9, 2024
1 parent c8da426 commit f9a94b0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/ui/pinned_drop/call-drop-inner.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ 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>`
| help: remove the extra argument
| ^^^^^^^^^^^^ ---- unexpected argument of type `Pin<&mut S>`
|
note: function defined here
--> tests/ui/pinned_drop/call-drop-inner.rs:5:1
Expand All @@ -19,3 +16,8 @@ note: function defined here
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();
|

0 comments on commit f9a94b0

Please sign in to comment.