Changed test output from line comments to block comments

This commit is contained in:
Valentin Kipyatkov
2014-11-21 16:01:09 +03:00
parent 2f226685d5
commit 6cb6a907d7
37 changed files with 59 additions and 59 deletions
@@ -3,13 +3,13 @@ Resolve target: value-parameter val p: kotlin.String? smart-cast to kotlin.Strin
fun foo(p: String?, x: Boolean, y: Boolean, z: Boolean, t: Boolean) {
if (p == null) {
if (x) {
// STATEMENT DELETED: print("x")
/* STATEMENT DELETED: print("x") */
error("error")
}
else if (y) {
// STATEMENT DELETED: print("y")
/* STATEMENT DELETED: print("y") */
if (z) {
// STATEMENT DELETED: print("z")
/* STATEMENT DELETED: print("z") */
return
}
else {
@@ -18,7 +18,7 @@ fun foo(p: String?, x: Boolean, y: Boolean, z: Boolean, t: Boolean) {
}
else {
if (t) {
// STATEMENT DELETED: print("t")
/* STATEMENT DELETED: print("t") */
return
}
else {