7 lines
114 B
Kotlin
7 lines
114 B
Kotlin
fun doSomething<T>(a: T) {}
|
|
|
|
fun foo() {
|
|
if (true) doSomething("test")
|
|
<caret>else doSomething("test2")
|
|
}
|