Files
kotlin-fork/analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/enums2.rendered
T

18 lines
175 B
Plaintext
Vendored

interface Some
object O1 : Some
object O2 : Some
enum class SomeEnum {
FIRST,
SECOND;
constructor(x: Some)
val x: Some
abstract fun check(y: Some): Boolean
}