mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
238 B
Rust
11 lines
238 B
Rust
//@ check-pass
|
|
|
|
use std::io::Write;
|
|
|
|
fn main() -> Result<(), std::io::Error> {
|
|
vec! { 1, 2, 3 }.len();
|
|
write! { vec![], "" }?;
|
|
println!{""}
|
|
[0]; // separate statement, not indexing into the result of println.
|
|
Ok(())
|
|
}
|