mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
20 lines
289 B
Rust
20 lines
289 B
Rust
trait Foo {
|
|
fn foo<T>(&self, val: T);
|
|
}
|
|
|
|
trait Bar: Foo { }
|
|
|
|
pub struct Thing;
|
|
|
|
impl Foo for Thing {
|
|
fn foo<T>(&self, val: T) { }
|
|
}
|
|
|
|
impl Bar for Thing { }
|
|
|
|
fn main() {
|
|
let mut thing = Thing;
|
|
let test: &mut dyn Bar = &mut thing;
|
|
//~^ ERROR E0038
|
|
//~| ERROR E0038
|
|
}
|