blob: cad8b02910b1aeb2b32bf3cc93d44b913c431ef9 [file] [log] [blame] [edit]
//@ 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> { Box::new(|| ()) }
pub fn main() {
}