Files
kotlin-fork/idea/testData/codeInsight/moveUpDown/classBodyDeclarations/functionAnchors/valueParams2.kt.after
T
2013-06-05 15:51:27 +04:00

16 lines
257 B
Plaintext

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