]> git.lizzy.rs Git - rust.git/blob - tests/idem/paren.rs
Add idem test for paren
[rust.git] / tests / idem / paren.rs
1 // Test parenthesis
2
3 fn foo() {
4     let very_long_variable_name = (a + first + simple + test);
5     let very_long_variable_name = (write + something + here + to + fill + the + line + 12 + 34 + 567
6                                    );
7     let very_long_variable_name = (write + something + here + to + fill + the + line + 12 + 34 + 567
8                                    + 78);
9     let very_long_variable_name = (write + something + here + to + fill + the + line + 12 + 34 + 567
10                                    + 78 + fill + another + line + AAAA + BBBBBBB + CCCCCCCCCCCCCCCCC
11                                    );
12     let very_long_variable_name = (write + something + here + to + fill + the + line + 12 + 34 + 567
13                                    + 78 + fill + another + line + AAAA + BBBBBBB + CCCCCCCCCCCCCCC +
14                                    DDDDDDD + EEEEEE);
15
16 }