enum class E { FIRST, SECOND { companion object { fun foo() = 42 } }; } fun f() = E.SECOND.foo()