fixed bug with incorrect copy of pseudocode part

(was noticeable in doTestCopy4 example)
labels after part should be repeated as well
This commit is contained in:
Svetlana Isakova
2012-12-13 19:22:30 +04:00
parent e15340bf3c
commit d778952512
3 changed files with 82 additions and 10 deletions
+10
View File
@@ -45,3 +45,13 @@ fun testCopy3() {
while (cond());
}
}
fun doTestCopy4() : Int {
try {
doSmth()
}
finally {
if(list != null) {
}
}
}