mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 05:01:11 +00:00
9 lines
255 B
Rust
9 lines
255 B
Rust
// 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() {}
|