1 2 3 4 5 6 7 8 9 10 11 12
// aux-build:m1.rs extern crate m1; struct X { } impl m1::X for X { //~ ERROR not all trait items implemented } fn main() {}