]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/empty-impl.rs
Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1' into sync_cg_clif-2021-03-29
[rust.git] / src / test / pretty / empty-impl.rs
1 // compile-flags: --crate-type=lib
2
3 trait X { fn dummy(&self) { } }
4 impl X for usize { }
5
6 trait Y { fn dummy(&self) { } }
7 impl Y for usize { }