mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-05 04:58:03 +08:00
6 lines
92 B
Rust
6 lines
92 B
Rust
fn main() {
|
|
// ANCHOR: here
|
|
let v: Vec<i32> = Vec::new();
|
|
// ANCHOR_END: here
|
|
}
|