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