mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
246 B
Rust
14 lines
246 B
Rust
trait MyTrait {
|
|
fn foo(&self) -> impl Sized;
|
|
fn bar(&self) -> impl Sized;
|
|
}
|
|
|
|
impl MyTrait for i32 {
|
|
//~^ ERROR not all trait items implemented, missing: `foo`
|
|
fn bar(&self) -> impl Sized {
|
|
self.foo()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|