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

6 lines
179 B
Kotlin

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