Files
kotlin/idea/testData/codeInsight/moveUpDown/parametersAndArguments/funParams2.kt
Nikolay Krasko 3d0d82b862 Fix tests for move: check applicability from changed text
Presentation status has stopped working after 18ce2c6070
2016-09-20 15:26:36 +03:00

14 lines
151 B
Kotlin
Vendored

// MOVE: down
class A {
fun <T, U, W> foo(
b: Int,
<caret>a: Int,
c: Int
) {
}
class B {
}
}