Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/classBodyDeclarations/functionAnchors/valueParams5.kt
T
2013-06-05 15:50:59 +04:00

17 lines
281 B
Kotlin

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