325e950bfe
#KT-17394 Fixed
12 lines
229 B
Kotlin
Vendored
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
|
|
} |