about summary refs log tree commit diff
path: root/tests/ui/issues/issue-36786-resolve-call.rs
blob: de7b0e18d521032c99dfd31f1cfbaf32f3a31c6a (plain)
1
2
3
4
5
6
7
8
//@ 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]()
}