Files
kotlin-fork/idea/testData/quickfix/override/nothingToOverride/afterOverrideJavaMethod.kt
T
2013-04-29 15:44:06 +04:00

6 lines
196 B
Kotlin

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