6 lines
179 B
Kotlin
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
|
|
} |