rust/tests/pretty/let.rs
2023-01-11 09:32:08 +00:00

10 lines
124 B
Rust

// pp-exact
// Check that `let x: _ = 0;` does not print as `let x = 0;`.
fn main() {
let x: _ = 0;
let _ = x;
}