trpl-zh-cn/listings/ch15-smart-pointers/listing-15-02/src/main.rs
2022-02-06 16:43:51 +08:00

9 lines
94 B
Rust
Executable File

// ANCHOR: here
enum List {
Cons(i32, List),
Nil,
}
// ANCHOR_END: here
fn main() {}