19 lines
392 B
Rust
19 lines
392 B
Rust
#![deny(deref_into_dyn_supertrait)]
|
|
|
|
use std::ops::Deref;
|
|
|
|
trait Bar<'a> {}
|
|
trait Foo<'a>: Bar<'a> {}
|
|
|
|
impl<'a> Deref for dyn Foo<'a> {
|
|
//~^ ERROR dyn Foo<'_>` implements `Deref` with supertrait `Bar<'_>` as target
|
|
//~| WARN this will change its meaning in a future release!
|
|
type Target = dyn Bar<'a>;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
todo!()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|