blob: 9b629838ffdf6d41a06d2b279585f530a810932c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// run-pass
#![allow(dead_code)]
// Test that the lambda kind is inferred correctly as a return
// expression
// pretty-expanded FIXME #23616
fn unique() -> Box<dyn FnMut()+'static> { return Box::new(|| ()); }
pub fn main() {
}
|