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(s: String): Int {
|
||||
return s.length() * 2
|
||||
return s.length * 2
|
||||
}
|
||||
}
|
||||
|
||||
open class Z: X() {
|
||||
fun foo(s: String): Int {
|
||||
return s.length()
|
||||
return s.length
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user