rust/tests/target/paren.rs

7 lines
125 B
Rust
Raw Normal View History

2018-03-08 12:25:06 +01:00
fn main() {
let x = (1);
let y = (/* comment */(2));
let z = ((3)/* comment */);
let a = (4/* comment */);
}