mirror of https://github.com/rust-lang/rust.git
18 lines
351 B
Rust
18 lines
351 B
Rust
//@ check-pass
|
|
#![warn(deref_into_dyn_supertrait)]
|
|
use std::ops::Deref;
|
|
|
|
trait Bar<T> {}
|
|
trait Foo: Bar<i32> {}
|
|
|
|
impl<'a> Deref for dyn Foo + 'a {
|
|
//~^ warn: this `Deref` implementation is covered by an implicit supertrait coercion
|
|
type Target = dyn Bar<u32> + 'a;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
todo!()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|