Files
kotlin-fork/compiler/testData/diagnostics/tests/sealed/NeverConstructed.kt
T
2021-04-20 18:12:46 +03:00

5 lines
98 B
Kotlin
Vendored

// FIR_IDENTICAL
sealed class Base {
fun foo() = <!SEALED_CLASS_CONSTRUCTOR_CALL!>Base()<!>
}