2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2015-01-12 18:40:19 -05:00
|
|
|
// Test that overloaded calls work with zero arity closures
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-01-12 18:40:19 -05:00
|
|
|
fn main() {
|
2019-05-28 14:47:21 -04:00
|
|
|
let functions: [Box<dyn Fn() -> Option<()>>; 1] = [Box::new(|| None)];
|
2015-01-12 18:40:19 -05:00
|
|
|
|
|
|
|
let _: Option<Vec<()>> = functions.iter().map(|f| (*f)()).collect();
|
|
|
|
}
|