]> git.lizzy.rs Git - rust.git/blob - tests/ui/deriving/deriving-clone-tuple-struct.rs
Rollup merge of #107424 - bpeel:clone-into-from-share-code, r=scottmcm
[rust.git] / tests / ui / deriving / deriving-clone-tuple-struct.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 #![allow(dead_code)]
5
6 #[derive(Clone)]
7 struct S((), ());
8
9 pub fn main() {}