9 lines
118 B
Kotlin
9 lines
118 B
Kotlin
fun doSomething<T>(a: T) {}
|
|
|
|
fun foo() {
|
|
<caret>if (true) {
|
|
//comment
|
|
doSomething("test")
|
|
}
|
|
}
|