diff options
| -rw-r--r-- | tests/indent/julia/assignment.jl | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/indent/julia/assignment.jl b/tests/indent/julia/assignment.jl index 798b889de..39b8e4e8d 100644 --- a/tests/indent/julia/assignment.jl +++ b/tests/indent/julia/assignment.jl @@ -1,11 +1,21 @@ my_variable = 1 + 2 - 3 * 4 / 5 % - 6 + 6 + ( + 1 + 2 + + 3 + ) + + 7 + 8 + + 9 function test() my_variable = 1 + 2 - 3 * 4 / 5 % - 6 + 6 + ( + 1 + 2 + + 3 + ) + + 7 + 8 + + 9 end |
