9 lines
122 B
Rust
9 lines
122 B
Rust
// run-pass
|
|
#[derive(Debug)]
|
|
struct Foo(isize, isize);
|
|
|
|
pub fn main() {
|
|
let x = Foo(1, 2);
|
|
println!("{:?}", x);
|
|
}
|