Files
kotlin-fork/idea/testData/quickfix/override/nothingToOverride/overrideJavaMethod.kt
T
2017-06-24 17:26:01 +03:00

7 lines
163 B
Kotlin
Vendored

// "Change function signature to 'fun next(bits: Int): Int'" "true"
import java.util.Random
class MyRandom : Random() {
<caret>override fun next(): Int = 4
}