rust/tests/ui/borrowck/alias-liveness/rtn-static.rs

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

23 lines
452 B
Rust
Raw Normal View History

2023-09-21 05:51:40 +00:00
//@ check-pass
#![feature(return_type_notation)]
trait Foo {
fn borrow(&mut self) -> impl Sized + '_;
}
2024-06-28 15:49:16 +00:00
fn live_past_borrow<T: Foo<borrow(..): 'static>>(mut t: T) {
2023-10-14 14:28:44 +00:00
let x = t.borrow();
drop(t);
drop(x);
}
2023-09-21 05:51:40 +00:00
// Test that the `'_` item bound in `borrow` does not cause us to
// overlook the `'static` RTN bound.
2024-06-28 15:49:16 +00:00
fn overlapping_mut<T: Foo<borrow(..): 'static>>(mut t: T) {
2023-09-21 05:51:40 +00:00
let x = t.borrow();
let x = t.borrow();
}
fn main() {}