Files
kotlin-fork/idea/testData/quickfix/override/nothingToOverride/overrideJavaMethod.kt
T

6 lines
160 B
Kotlin
Vendored

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