Added correctness check of test data + fixed huge amount of incorrect code in test data

This commit is contained in:
Valentin Kipyatkov
2020-04-10 20:32:13 +03:00
parent c19a16f1e0
commit f0d4d7bb86
139 changed files with 535 additions and 448 deletions
@@ -1,10 +1,10 @@
// FLOW: OUT
open class B : A() {
internal open class B : A() {
override fun foo() = <caret>2
}
fun test(a: A, b: B, c: C) {
internal fun test(a: A, b: B, c: C) {
val x = a.foo()
val y = b.foo()
val z = c.foo()