summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/do-not-ignore-lifetime-bounds-in-copy-proj.rs
blob: 96c8719468f27c3f49ed40ee7ded108f435a690d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Test that the 'static bound from the Copy impl is respected. Regression test for #29149.

#[derive(Clone)]
struct Foo<'a>(&'a u32);
impl Copy for Foo<'static> {}

fn main() {
    let s = 2;
    let a = (Foo(&s),); //~ ERROR `s` does not live long enough [E0597]
    drop(a.0);
    drop(a.0);
}