mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
345 B
Rust
21 lines
345 B
Rust
pub trait Foo { fn foo<T>(&self, ext_thing: &T); }
|
|
pub trait Bar: Foo { }
|
|
impl<T: Foo> Bar for T { }
|
|
|
|
pub struct Thing;
|
|
impl Foo for Thing {
|
|
fn foo<T>(&self, _: &T) {}
|
|
}
|
|
|
|
#[inline(never)]
|
|
fn foo(b: &dyn Bar) {
|
|
//~^ ERROR E0038
|
|
b.foo(&0)
|
|
}
|
|
|
|
fn main() {
|
|
let mut thing = Thing;
|
|
let test: &dyn Bar = &mut thing;
|
|
foo(test);
|
|
}
|