Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/funOnEnumClass.kt.after
T
2019-11-13 08:37:25 +09:00

12 lines
164 B
Plaintext
Vendored

// "Create member function 'Bar.foo'" "true"
fun foo() {
Bar.BAZ.foo()
}
enum class Bar {
BAZ;
fun foo() {
TODO("Not yet implemented")
}
}