mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00

this commit makes `deref_into_dyn_supertrait` lint allow-by-default, removes future incompatibility (we finally live in a broken world), and changes the wording in the documentation. previously documentation erroneously said that it lints against *usage* of the deref impl, while it actually (since 104742) lints on the impl itself (oooops, my oversight, should have updated it 2+ years ago...)
22 lines
426 B
Rust
22 lines
426 B
Rust
//@ check-pass
|
|
#![warn(deref_into_dyn_supertrait)]
|
|
|
|
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
|
|
type Target = dyn Bar<u32> + 'a;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
self.as_dyn_bar_u32()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|