rust/tests/ui/implied-bounds/implied-bounds-on-trait-hierarchy-1.rs

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

39 lines
724 B
Rust
Raw Normal View History

2022-11-06 10:26:25 -06:00
// issue: #84591
2022-11-06 10:26:25 -06:00
// Subtrait was able to incorrectly extend supertrait lifetimes even when
// supertrait had weaker implied bounds than subtrait.
trait Subtrait<T>: Supertrait {}
trait Supertrait {
fn action(self);
}
fn subs_to_soup<T, U>(x: T)
where
T: Subtrait<U>,
{
soup(x)
}
fn soup<T: Supertrait>(x: T) {
x.action();
}
impl<'a, 'b: 'a> Supertrait for (&'b str, &mut &'a str) {
fn action(self) {
*self.1 = self.0;
}
}
impl<'a, 'b> Subtrait<&'a &'b str> for (&'b str, &mut &'a str) {}
fn main() {
let mut d = "hi";
{
let x = "Hello World".to_string();
subs_to_soup((x.as_str(), &mut d));
2022-11-06 10:26:25 -06:00
//~^ does not live long enough
}
println!("{}", d);
}