mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-23 13:13:17 +00:00
11 lines
169 B
Rust
11 lines
169 B
Rust
// build-pass
|
|
// compile-flags: --crate-type=lib
|
|
|
|
#![feature(unsized_fn_params)]
|
|
|
|
pub fn f(k: dyn std::fmt::Display) {
|
|
let k2 = || {
|
|
k.to_string();
|
|
};
|
|
}
|