about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0261.rs
blob: e37eab9501ed6694151678c8fe841d2dfc9545d6 (plain)
1
2
3
4
5
6
7
8
9
fn foo(x: &'a str) { } //~ ERROR E0261
                       //~| NOTE undeclared lifetime

struct Foo {
    x: &'a str, //~ ERROR E0261
                //~| NOTE undeclared lifetime
}

fn main() {}