6 lines
85 B
Kotlin
6 lines
85 B
Kotlin
fun doSomething<T>(a: T) {}
|
|
|
|
fun foo() {
|
|
<caret>if (true) doSomething("test");
|
|
}
|