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