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