mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 13:32:19 +00:00
10 lines
120 B
Rust
10 lines
120 B
Rust
//@ run-pass
|
|
|
|
#[derive(Clone)]
|
|
#[allow(dead_code)]
|
|
struct S<T>(T, ());
|
|
|
|
pub fn main() {
|
|
let _ = S(1, ()).clone();
|
|
}
|