rust/tests/target/remove_blank_lines.rs
2018-03-02 15:07:13 +13:00

28 lines
356 B
Rust

fn main() {
let x = 1;
let y = 2;
println!("x + y = {}", x + y);
}
fn foo() {
#![attribute]
let x = 1;
// comment
}
// comment after item
// comment before item
fn bar() {
let x = 1;
// comment after statement
// comment before statment
let y = 2;
let z = 3;
println!("x + y + z = {}", x + y + z);
}