]> git.lizzy.rs Git - rust.git/blob - tests/ui/deriving/issue-6341.rs
Rollup merge of #106648 - Nilstrieb:poly-cleanup, r=compiler-errors
[rust.git] / tests / ui / deriving / issue-6341.rs
1 // check-pass
2 // pretty-expanded FIXME #23616
3
4 #[derive(PartialEq)]
5 struct A { x: usize }
6
7 impl Drop for A {
8     fn drop(&mut self) {}
9 }
10
11 pub fn main() {}