12 lines
158 B
Kotlin
Vendored
12 lines
158 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
fun doSomething<T>(a: T) {}
|
|
|
|
fun foo(x: Int) {
|
|
if (x == 1) {
|
|
doSomething(x)
|
|
}
|
|
}
|
|
|
|
fun x() <caret>{ doSomething("x") }
|