]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deriving/deriving-clone-generic-tuple-struct.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / deriving / deriving-clone-generic-tuple-struct.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 #[derive(Clone)]
5 struct S<T>(T, ());
6
7 pub fn main() {
8     let _ = S(1, ()).clone();
9 }