4436142f00
- Enable custom compiler options for `AbstractNewJavaToKotlinConverterSingleFileTest` - ^KT-38450 Fixed
6 lines
136 B
Kotlin
Vendored
6 lines
136 B
Kotlin
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
fun interface MyRunnable {
|
|
fun getResult(): Int
|
|
val doubleResult: Int
|
|
get() = getResult() * 2
|
|
} |