rust/tests/source/remove_blank_lines.rs
2017-12-05 17:45:19 +09:00

44 lines
372 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);
}