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