mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
224 B
Rust
13 lines
224 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() {
|
|
}
|