blob: 4a9d7b472c93a16b9ed4d89538f9475a81713db7 [file] [log] [blame]
error[E0046]: not all trait items implemented, missing: `foo`, `bar`
--> $DIR/missing-trait-item.rs:10:5
|
LL | unsafe fn foo(a: &usize, b: &usize) -> usize;
| --------------------------------------------- `foo` from trait
LL | fn bar(&self, a: &usize, b: &usize) -> usize;
| --------------------------------------------- `bar` from trait
...
LL | impl T for () {}
| ^^^^^^^^^^^^^ missing `foo`, `bar` in implementation
error[E0046]: not all trait items implemented, missing: `foo`, `bar`
--> $DIR/missing-trait-item.rs:12:5
|
LL | unsafe fn foo(a: &usize, b: &usize) -> usize;
| --------------------------------------------- `foo` from trait
LL | fn bar(&self, a: &usize, b: &usize) -> usize;
| --------------------------------------------- `bar` from trait
...
LL | impl T for usize {
| ^^^^^^^^^^^^^^^^ missing `foo`, `bar` in implementation
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0046`.