about summary refs log tree commit diff
path: root/tests/ui/closures/2229_closure_analysis/diagnostics/closure-origin-tuple-diagnostics.rs
blob: a69f23939f948d257a47af985208fa20fa08f653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ edition:2021

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);
}