blob: 79c9f7dc01103cc38f2560622cfbdf15cfbfd256 [file] [log] [blame]
#![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() {
}