mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 08:24:31 +00:00
10 lines
159 B
Rust
10 lines
159 B
Rust
// run-pass
|
|
#[allow(unused_tuple_struct_fields)]
|
|
#[derive(Debug)]
|
|
struct Foo(isize, isize);
|
|
|
|
pub fn main() {
|
|
let x = Foo(1, 2);
|
|
println!("{:?}", x);
|
|
}
|