63a0b5bfde
Part of #KT-22211 Part of #KT-39353
8 lines
129 B
Kotlin
Vendored
8 lines
129 B
Kotlin
Vendored
package testing
|
|
|
|
private fun <T> times(times : Int, body : () -> T) {}
|
|
|
|
fun main(args: Array<String>) {
|
|
times(3) {<caret>}
|
|
}
|