mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
289 B
Rust
21 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
|
|
}
|