[LC] fix multifile testData

^KT-56046
This commit is contained in:
Dmitrii Gridin
2023-01-28 10:24:41 +01:00
committed by Space Team
parent cfdc9f342a
commit 2edb03a994
24 changed files with 121 additions and 85 deletions
@@ -1,4 +1,6 @@
// p.C
// COMPILATION_ERRORS
// FILE: C.kt
package p
class C : A() {
@@ -10,4 +12,10 @@ class C : A() {
}
}
// COMPILATION_ERRORS
// FILE: A.kt
package p
abstract class A {
protected val ap: Int = 4
abstract protected fun af(): Int
}