Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/javaBean/DifferentGetterAndSetter.kt
2013-03-12 19:31:45 +04:00

7 lines
186 B
Kotlin

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