Fix deprecations in testData: partial body resolve tests.
This commit is contained in:
+3
-3
@@ -5,14 +5,14 @@ fun foo(p: String?, p1: Any?) {
|
||||
/* STATEMENT DELETED: y(f()!!) */
|
||||
|
||||
if (a) {
|
||||
print(p!!.size)
|
||||
print(p!!.length())
|
||||
}
|
||||
else {
|
||||
print(p!!.length)
|
||||
print(p!!.get(1))
|
||||
}
|
||||
|
||||
if (y()) {
|
||||
print(<caret>p.size)
|
||||
print(<caret>p.charAt(1))
|
||||
/* STATEMENT DELETED: p1!! */
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user