Files
kotlin-fork/idea/testData/codeInsight/lineMarker/recursiveCall/inLambda.kt
T
2015-04-08 15:14:10 +03:00

5 lines
81 B
Kotlin
Vendored

fun outer(a: Int) {
SwingUtilities.invokeLater {
outer(a - 1)
}
}