rust/tests/pretty/let.rs

10 lines
125 B
Rust
Raw Normal View History

//@ pp-exact
2015-01-02 13:28:53 +00:00
// Check that `let x: _ = 0;` does not print as `let x = 0;`.
fn main() {
let x: _ = 0;
let _ = x;
}