Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/funOnEnumClass2.kt.after
T
2019-09-24 19:40:31 +07:00

12 lines
236 B
Plaintext
Vendored

// "Create member function 'Bar.foo'" "true"
fun foo() {
Bar.BAZ.foo()
}
enum class Bar {
BAZ;
fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}