trpl-zh-cn/listings/ch15-smart-pointers/listing-15-02/src/main.rs

9 lines
94 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
// ANCHOR: here
enum List {
Cons(i32, List),
Nil,
}
// ANCHOR_END: here
fn main() {}