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