Adjust testData to CharSequence.length transformation

This commit is contained in:
Denis Zharkov
2015-10-12 20:29:01 +03:00
committed by Mikhail Glukhikh
parent cb562e7ea5
commit f0e3fd617d
348 changed files with 524 additions and 540 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ package test
fun foo(): Int {
val a = "a"
return if (a.length() > 0) {
return if (a.length > 0) {
<!NO_ELSE_IN_WHEN!>when<!> (a) {
"a" -> 1
}
@@ -16,7 +16,7 @@ fun foo(): Int {
fun bar(): Int {
val a = "a"
if (a.length() > 0) {
if (a.length > 0) {
return <!NO_ELSE_IN_WHEN!>when<!> (a) {
"a" -> 1
}