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

9 lines
174 B
Kotlin
Vendored

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