mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
238 B
Rust
13 lines
238 B
Rust
trait Foo {
|
|
fn foo(self: Box<Self>);
|
|
}
|
|
|
|
impl Foo for isize {
|
|
fn foo(self: Box<isize>) { }
|
|
}
|
|
|
|
fn main() {
|
|
(&5isize as &dyn Foo).foo();
|
|
//~^ ERROR: no method named `foo` found for reference `&dyn Foo` in the current scope
|
|
}
|