[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(), I {
@@ -13,4 +15,15 @@ class C : A(), I {
override fun if() = 5
}
// COMPILATION_ERRORS
// FILE: A.kt
package p
abstract class A {
open internal val ap: Int = 4
abstract internal fun af(): Int
}
interface I {
internal val ip: Int
internal fun if(): Int
}