rust/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
300 B
Rust
Raw Normal View History

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
struct Ref<'a, 'b> {
a: &'a u32,
b: &'b u32,
}
2017-08-05 17:39:43 -05:00
fn foo(mut x: Ref, y: Ref) {
2022-05-22 01:05:15 -05:00
x.b = y.b;
//[base]~^ ERROR lifetime mismatch
//[nll]~^^ ERROR lifetime may not live long enough
}
2017-08-05 17:39:43 -05:00
fn main() {}