10 lines
88 B
Rust
10 lines
88 B
Rust
#[deriving(Clone)]
|
|
struct S<T> {
|
|
foo: (),
|
|
bar: (),
|
|
baz: T,
|
|
}
|
|
|
|
fn main() {}
|
|
|