Files
rust/tests/ui/traits/trait-upcasting/migrate-lint-deny.rs

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

26 lines
436 B
Rust
Raw Normal View History

2021-10-02 19:00:36 +08:00
#![deny(deref_into_dyn_supertrait)]
use std::ops::Deref;
2021-10-02 19:00:36 +08:00
// issue 89190
trait A {}
trait B: A {}
2021-10-02 19:00:36 +08:00
impl<'a> Deref for dyn 'a + B {
//~^ ERROR `dyn B` implements `Deref` with supertrait `A` as target
2023-11-20 19:03:40 +00:00
//~| WARN this will change its meaning in a future release!
2021-10-02 19:00:36 +08:00
type Target = dyn A;
fn deref(&self) -> &Self::Target {
todo!()
}
}
fn take_a(_: &dyn A) {}
fn whoops(b: &dyn B) {
take_a(b)
}
fn main() {}