Fix moving of value/type parameters

This commit is contained in:
Alexey Sedunov
2013-05-30 17:30:51 +04:00
parent 57edbdfbc4
commit 5345d0a0d5
33 changed files with 526 additions and 11 deletions
@@ -0,0 +1,17 @@
// MOVE: up
// MOVER_CLASS: org.jetbrains.jet.plugin.codeInsight.upDownMover.JetExpressionMover
// IS_APPLICABLE: false
class A {
fun foo<T,
U,
W>(
b: Int<caret>,
c: Int
a: Int,
) {
}
class B {
}
}