Adjust testData to CharSequence.length transformation
This commit is contained in:
committed by
Mikhail Glukhikh
parent
cb562e7ea5
commit
f0e3fd617d
+2
-2
@@ -6,13 +6,13 @@ open class X: A() {
|
||||
|
||||
open class Y: B() {
|
||||
fun foo(x: Int): String? {
|
||||
return x.length() * 2
|
||||
return x.length * 2
|
||||
}
|
||||
}
|
||||
|
||||
open class Z: X() {
|
||||
fun foo(x: Int): String? {
|
||||
return x.length()
|
||||
return x.length
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user