Files
kotlin-fork/compiler/testData/diagnostics/tests/testsWithJava17/sealedClasses/kotlinInheritsJavaInterface.kt
T
Ilya Kirillov 66df69ea2c [low level fir, tests] temporary mute some tests with the latest full jdk
full jdk paths are not handled well after test infra rework
2022-04-13 12:53:27 +02:00

14 lines
243 B
Kotlin
Vendored

// FIR_IDE_IGNORE
// FIR_IDENTICAL
// ISSUE: KT-41215
// FILE: Base.java
public sealed interface Base permits A, B {}
// FILE: A.java
public final class A extends Base {}
// FILE: B.kt
class B : <!CLASS_INHERITS_JAVA_SEALED_CLASS!>Base<!>