Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/PropertyReference.A.kt
T
Alexander Udalov 5ab83aad8a Support references to extension properties in JVM codegen
#KT-1183 In Progress
2014-07-02 01:26:19 +04:00

7 lines
104 B
Kotlin

package a
public var topLevel: Int = 42
public val String.extension: Long
get() = length.toLong()