Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/javaBean/DifferentGetterAndSetter.kt
2014-07-25 21:19:38 +04:00

7 lines
165 B
Kotlin

package test
public open class DifferentGetterAndSetter() {
public open fun setSomething(p0: String?): Unit { }
public open fun getSomething() : Int = 17
}