3078bd7b67
^KT-42411 Fixed
9 lines
142 B
Kotlin
Vendored
9 lines
142 B
Kotlin
Vendored
package testing
|
|
|
|
private fun <T> times(times : Int, body : () -> T) {}
|
|
|
|
fun main(args: Array<String>) {
|
|
times(3) {
|
|
<caret>
|
|
}
|
|
} |