class TestClass { constructor() /* primary */ { super/*Any*/() /* () */ } } interface TestInterface { } object TestObject { private constructor() /* primary */ { super/*Any*/() /* () */ } } open annotation class TestAnnotationClass : Annotation { constructor() /* primary */ { super/*Any*/() /* () */ } } enum class TestEnumClass : Enum { private constructor() /* primary */ { super/*Enum*/() /* () */ } fun values(): Array /* Synthetic body for ENUM_VALUES */ fun valueOf(value: String): TestEnumClass /* Synthetic body for ENUM_VALUEOF */ }