Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt4693.kt
T

8 lines
157 B
Kotlin
Vendored

enum class MyEnum {
K;
inline fun doSmth(f: (MyEnum) -> String) : String {
// This function should be inline
return f(K)
}
}