rust/tests/ui/inference/newlambdas-ret-infer2.rs

13 lines
226 B
Rust

//@ 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() {
}