Files
kotlin-fork/idea/testData/inspections/unusedReceiverParameter/usedInProperty.kt
T
2015-03-20 19:34:16 +03:00

6 lines
108 B
Kotlin
Vendored

val String.doubleLength: Int
get() = length() * 2
fun main(args: Array<String>) {
"".doubleLength
}