summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-lifetime-capture-rules-2024.rs
blob: c06107e66a76caf497488d90fe4a0136bbaeb50b (plain)
1
2
3
4
5
6
fn foo(x: &Vec<i32>) -> impl Sized {
    x
    //~^ ERROR hidden type for `impl Sized` captures lifetime that does not appear in bounds
}

fn main() {}