KT-13146 J2K recursion while converting self-referenced anonymous functions (#956)
This commit is contained in:
committed by
Dmitry Jemerov
parent
33d33ab144
commit
47bfb8133d
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
fun someMethod() {
|
||||
val someRunnable = object : Runnable {
|
||||
override fun run() {
|
||||
this.run()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user