rust/src/test/pretty/let.rs
2018-12-25 21:08:33 -07:00

9 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;
}