]> git.proxmox.com Git - rustc.git/blame - src/test/ui/missing/missing-items/m2.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / missing / missing-items / m2.rs
CommitLineData
476ff2be
SL
1// aux-build:m1.rs
2
476ff2be
SL
3
4extern crate m1;
5
6struct X {
7}
8
ff7c6d11 9impl m1::X for X { //~ ERROR not all trait items implemented
223e47cc 10}
0531ce1d
XL
11
12fn main() {}