blob: 2076772b59df432e3bd2d4933de876d7ba06bc1c [file] [log] [blame]
error: lifetime may not live long enough
--> $DIR/regions-bounded-method-type-parameters.rs:12:9
|
LL | fn caller<'a>(x: &isize) {
| -- lifetime `'a` defined here
LL | Foo.some_method::<&'a isize>();
| ^^^^^^^^^^^ requires that `'a` must outlive `'static`
|
= help: consider replacing `'a` with `'static`
error: aborting due to previous error