superlint/.automation/test/scalafmt/scalafmt_bad_1.scala
Jake Herbst 897185a4aa
Adding scalafmt (#2053)
* Adding scalafmt

* add it

Co-authored-by: Jake Herbst <jherbst@rsglab.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-11-10 12:28:50 -06:00

31 lines
464 B
Scala

object a {
class a[
t1,
t2 // comment
](a1: Int,
a2: Int // comment
)(
b1: String,
b2: String // comment
)(implicit
c1: SomeType1,
c2: SomeType2 // comment
) {
def this(
a1: Int,
a2: Int // comment
)(
b1: String,
b2: String // comment
)(implicit
c1: SomeType1,
c2: SomeType2 // comment
) = this(
a1,
a2 // comment
) (
b1,
b2 // comment
)
}
}