Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-36786-resolve-call.rs
blob: de7b0e18d521032c99dfd31f1cfbaf32f3a31c6a [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Ensure that types that rely on obligations are autoderefed
// correctly
fn
main
()
{
let
x
:
Vec
<
Box
<
dyn
Fn
()>>
=
vec
![
Box
::
new
(||
())];
x
[
0
]()
}