2016-11-14 11:23:17 -06:00
|
|
|
// aux-build:m1.rs
|
|
|
|
|
|
|
|
|
2016-10-23 20:54:31 -05:00
|
|
|
extern crate m1;
|
2016-05-19 07:00:43 -05:00
|
|
|
|
2016-10-23 20:54:31 -05:00
|
|
|
struct X {
|
|
|
|
}
|
2016-05-19 07:00:43 -05:00
|
|
|
|
2017-11-20 06:13:27 -06:00
|
|
|
impl m1::X for X { //~ ERROR not all trait items implemented
|
2016-05-19 07:00:43 -05:00
|
|
|
}
|
2018-03-12 15:21:43 -05:00
|
|
|
|
|
|
|
fn main() {}
|