blob: 104f5be7767d35fc9febece36c1e7770bfc35799 [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> { Box::new(|| ()) }
pub fn main() {
}