2022-05-22 01:05:15 -05:00
|
|
|
// revisions: base nll
|
|
|
|
// ignore-compare-mode-nll
|
|
|
|
//[nll] compile-flags: -Z borrowck=mir
|
|
|
|
|
2017-08-05 17:39:43 -05:00
|
|
|
trait Foo {
|
|
|
|
fn foo<'a>(x: &mut Vec<&u8>, y: &u8);
|
2017-06-29 14:40:04 -05:00
|
|
|
}
|
2017-08-05 17:39:43 -05:00
|
|
|
impl Foo for () {
|
|
|
|
fn foo(x: &mut Vec<&u8>, y: &u8) {
|
2022-05-22 01:05:15 -05:00
|
|
|
x.push(y);
|
|
|
|
//[base]~^ ERROR lifetime mismatch
|
|
|
|
//[nll]~^^ ERROR lifetime may not live long enough
|
2017-08-05 17:39:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {}
|