Cleanup deprecated symbol usages in testData
This commit is contained in:
@@ -5,14 +5,14 @@ fun foo(p: String?, p1: Any?) {
|
||||
/* STATEMENT DELETED: y(f()!!) */
|
||||
|
||||
if (a) {
|
||||
print(p!!.length())
|
||||
print(p!!.length)
|
||||
}
|
||||
else {
|
||||
print(p!!.get(1))
|
||||
}
|
||||
|
||||
if (y()) {
|
||||
print(<caret>p.charAt(1))
|
||||
print(<caret>p[1])
|
||||
/* STATEMENT DELETED: p1!! */
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user