summaryrefslogtreecommitdiffstats
path: root/tests/ui/static/static-lifetime-bound.rs
blob: b5da91ec3b6b0e13598e77bd1729789b3ed43cd7 (plain)
1
2
3
4
5
6
fn f<'a: 'static>(_: &'a i32) {} //~WARN unnecessary lifetime parameter `'a`

fn main() {
    let x = 0;
    f(&x); //~ERROR does not live long enough
}