Fix deprecations in testData: partial body resolve tests.

This commit is contained in:
Ilya Gorbunov
2015-09-15 20:38:38 +03:00
parent 0e3e33e5c1
commit 7f7cc02256
33 changed files with 46 additions and 46 deletions
+3 -3
View File
@@ -6,14 +6,14 @@ fun foo(p: Any, p1: Any?) {
/* STATEMENT DELETED: z(f() as String) */
if (a) {
print((p as String).size)
print((p as String).length())
}
else {
print((p as String).length)
print((p as String).get(1))
}
if (y()) {
print(<caret>p.size)
print(<caret>p.charAt(1))
/* STATEMENT DELETED: p1 as String */
}