Auto merge of #36822 - Aatch:resolve-callee-expr, r=luqmana
Resolve the callee type in check_call before autoderef If the callee type is an associated type, then it needs to be normalized before trying to deref it. This matches the behaviour of `check_method_call` for autoderef behaviour in calls. Fixes #36786
This commit is contained in:
commit
1d64acdceb
2 changed files with 19 additions and 1 deletions
17
src/test/run-pass/issue-36786-resolve-call.rs
Normal file
17
src/test/run-pass/issue-36786-resolve-call.rs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// Ensure that types that rely on obligations are autoderefed
|
||||
// correctly
|
||||
|
||||
fn main() {
|
||||
let x : Vec<Box<Fn()>> = vec![Box::new(|| ())];
|
||||
x[0]()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue