]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #71627 - ldm0:autoderefarg, r=Dylan-DPC
authorDylan DPC <dylan.dpc@gmail.com>
Wed, 29 Apr 2020 17:39:34 +0000 (19:39 +0200)
committerGitHub <noreply@github.com>
Wed, 29 Apr 2020 17:39:34 +0000 (19:39 +0200)
commit75561a56ac57c47762b5ddddf7bb2e6798d98e7c
tree82ec64f066d4e3bf6ef6f20f8456f32fb5286588
parente3bf8709db5e136949cc547e7f5d27e559a95624
parent8d2f301283ff2dcf10221045d8345e3a38f6f99d
Rollup merge of #71627 - ldm0:autoderefarg, r=Dylan-DPC

Fix wrong argument in autoderef process

The `overloaded_deref_ty` is a function for derefencing a type which overloads the `Deref` trait. But actually this function never uses the parameter pushed in until this PR. -_-