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

6 lines
167 B
Plaintext
Vendored

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