rust/tests/ui/closures/capture-unsized-by-ref.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
171 B
Rust
Raw Normal View History

//@ build-pass
//@ compile-flags: --crate-type=lib
#![feature(unsized_fn_params)]
pub fn f(k: dyn std::fmt::Display) {
let k2 = || {
k.to_string();
};
}