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