summaryrefslogtreecommitdiffstats
path: root/src/test/ui/missing/missing-items/m2.rs
blob: c2a6914abc9ec96fad5a4ee246348f01ea8c3f99 (plain)
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() {}