From 17f1d68685122e1ff041d9be80589c74dbc4c8fc Mon Sep 17 00:00:00 2001 From: Albert Meltzer Date: Tue, 19 Nov 2019 21:21:47 -0800 Subject: [PATCH] Router: add tests for chain with a comment #1334 --- .../src/test/resources/test/ContinuationIndent.stat | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/scalafmt-tests/src/test/resources/test/ContinuationIndent.stat b/scalafmt-tests/src/test/resources/test/ContinuationIndent.stat index 94340d0e3a..7e79f2b46a 100644 --- a/scalafmt-tests/src/test/resources/test/ContinuationIndent.stat +++ b/scalafmt-tests/src/test/resources/test/ContinuationIndent.stat @@ -37,3 +37,15 @@ class ExtendTest with D with E => } +<<< #1334 1 +class Foo { + val vv = v.aaa // + .bbb + .ccc() +} +>>> +class Foo { + val vv = v.aaa // + .bbb + .ccc() +}