^^ This worked for me in Kotlin 1.2.41 update: it ...
# announcements
b
^^ This worked for me in Kotlin 1.2.41 update: it fails if I nest it inside of another class
Copy code
class Foo {
    enum class Animal {
        CAT, DOG
    }

    operator fun Animal.inc(): Animal = TODO()
}