]> git.lizzy.rs Git - rust.git/blob - tests/source/paren.rs
Support @generated marker to skip code formatting
[rust.git] / tests / source / paren.rs
1 fn main() {
2     let x = (((1)));
3     let y = (/* comment */((2)));
4     let z = (((3)/* comment */));
5     let a = (((4/* comment */)));
6 }