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

16 lines
255 B
Plaintext

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