2021-06-27 02:22:46 -04:00
|
|
|
// edition:2021
|
|
|
|
|
2020-12-02 22:25:22 -05:00
|
|
|
struct S(String, String);
|
|
|
|
|
|
|
|
fn expect_fn<F: Fn()>(_f: F) {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let s = S(format!("s"), format!("s"));
|
|
|
|
let c = || { //~ ERROR expected a closure that implements the `Fn`
|
|
|
|
let s = s.1;
|
|
|
|
};
|
|
|
|
expect_fn(c);
|
|
|
|
}
|