Move statement: enable expression ended with semicolon (KT-8581)
#KT-8581 Fixed
This commit is contained in:
committed by
Nikolay Krasko
parent
5259af157a
commit
7b8abc5457
@@ -0,0 +1,5 @@
|
||||
// MOVE: up
|
||||
fun x() {
|
||||
println("a")
|
||||
<caret>println("b");
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// MOVE: up
|
||||
fun x() {
|
||||
<caret>println("b");
|
||||
println("a")
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// MOVE: down
|
||||
fun x() {
|
||||
<caret>println("b");
|
||||
println("a")
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// MOVE: down
|
||||
fun x() {
|
||||
println("a")
|
||||
<caret>println("b");
|
||||
}
|
||||
Reference in New Issue
Block a user