Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/parametersAndArguments/funParams2.kt
T
2015-01-30 21:16:27 +03:00

17 lines
259 B
Kotlin

// MOVE: down
// MOVER_CLASS: org.jetbrains.kotlin.idea.codeInsight.upDownMover.JetExpressionMover
class A {
fun foo<T,
U,
W>(
b: Int,
<caret>a: Int,
c: Int
) {
}
class B {
}
}