blob: b3b679813c9b116440cc5a60f4ff36a75815a1e0 (
plain)
1
2
3
4
5
6
7
8
|
// Test that an object type `Box<Foo>` is not considered to implement the
// trait `Foo`. Issue #5087.
trait Foo {}
fn take_foo<F:Foo>(f: F) {}
fn take_object(f: Box<dyn Foo>) { take_foo(f); }
//~^ ERROR `Box<dyn Foo>: Foo` is not satisfied
fn main() {}
|