rust/src/test/run-pass/deriving-clone-tuple-struct.rs

6 lines
52 B
Rust
Raw Normal View History

#[deriving(Clone)]
struct S((), ());
fn main() {}