So the only solution is ``` class Test { val s...
# kontributors
s
So the only solution is
Copy code
class Test {
    val someRunnable: Runnable = object : Runnable {
        override fun run() {
            this.run()
        }
    }
}
?