Files
kotlin-fork/idea/testData/formatter/PropertyAccessorLineBreak.kt
T
Dmitry Jemerov 325e950bfe Reformat expression body property accessors
#KT-17394 Fixed
2017-07-19 15:02:52 +02:00

12 lines
229 B
Kotlin
Vendored

class A {
override val location: Location get() =
if (team != null)
team.location(organization)
else
organization.location().teams
val name get() = "a"
/** The age. */
val age get() = 1
}