22 lines
453 B
Rust
22 lines
453 B
Rust
//@ check-pass
|
|
|
|
use std::ops::Deref;
|
|
|
|
trait Bar<T> {}
|
|
|
|
trait Foo: Bar<i32> {
|
|
fn as_dyn_bar_u32<'a>(&self) -> &(dyn Bar<u32> + 'a);
|
|
}
|
|
|
|
impl<'a> Deref for dyn Foo + 'a {
|
|
//~^ WARN this `Deref` implementation is covered by an implicit supertrait coercion
|
|
//~| WARN this will change its meaning in a future release!
|
|
type Target = dyn Bar<u32> + 'a;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
self.as_dyn_bar_u32()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|