6 lines
83 B
Plaintext
6 lines
83 B
Plaintext
fun doSomething<T>(a: T) {}
|
|
|
|
fun foo() {
|
|
for (i in 1..4) doSomething("test")
|
|
}
|