Fixed tests after adding error checking for intention tests.

This commit is contained in:
Zalim Bashorov
2014-04-01 20:49:24 +04:00
parent 8d19c7309b
commit b43958f4b3
399 changed files with 1376 additions and 906 deletions
@@ -1,3 +1,5 @@
// ERROR: Unresolved reference: X
fun foo(n: Int) {
<caret>var x = X<>()
}
}
@@ -1,4 +1,6 @@
// ERROR: Unresolved reference: X
fun foo(n: Int) {
<caret>var x
x = X<>()
}
}
@@ -1,3 +1,5 @@
// ERROR: Unresolved reference: X
fun foo(n: Int) {
<caret>val x = X<>()
}
}
@@ -1,4 +1,6 @@
// ERROR: Unresolved reference: X
fun foo(n: Int) {
<caret>val x
x = X<>()
}
}