4d9b19da82
#KT-18539 Fixed
12 lines
164 B
Plaintext
Vendored
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")
|
|
}
|
|
} |