3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
12 lines
271 B
Kotlin
12 lines
271 B
Kotlin
// ERROR: There's a cycle in the inheritance hierarchy for this type
|
|
// ERROR: There's a cycle in the inheritance hierarchy for this type
|
|
open class A : B() {
|
|
public open fun foo(s: String) {
|
|
}
|
|
}
|
|
|
|
open class B : A() {
|
|
public open fun foo(s: String) {
|
|
}
|
|
}
|