6 lines
80 B
Plaintext
6 lines
80 B
Plaintext
fun doSomething<T>(a: T) {}
|
|
|
|
fun foo() {
|
|
while (true) doSomething("test")
|
|
}
|