mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 01:10:36 +00:00
13 lines
131 B
Rust
13 lines
131 B
Rust
//@ aux-build:m1.rs
|
|
|
|
|
|
extern crate m1;
|
|
|
|
struct X {
|
|
}
|
|
|
|
impl m1::X for X { //~ ERROR not all trait items implemented
|
|
}
|
|
|
|
fn main() {}
|