blob: 969868486e6eb31e51a24dbe5338db79b06f78ed [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<FnMut()+'static> { return Box::new(|| ()); }
pub fn main() {
}