rust/tests/ui/traits/impl-object-overlap-issue-23853.rs

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

19 lines
503 B
Rust
Raw Normal View History

//@ run-pass
// Test that we are able to compile the case where both a blanket impl
// and the object type itself supply the required trait obligation.
// In this case, the blanket impl for `Foo` applies to any type,
// including `Bar`, but the object type `Bar` also implicitly supplies
// this context.
2024-02-07 10:42:01 +08:00
trait Foo { fn dummy(&self) { } } //~ WARN method `dummy` is never used
trait Bar: Foo { }
impl<T:?Sized> Foo for T { }
fn want_foo<B:?Sized+Foo>() { }
fn main() {
2019-05-28 14:47:21 -04:00
want_foo::<dyn Bar>();
}