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
@@ -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!! */
}