Regression test for annotated function after the last enum entry #KT-4693 Obsolete

This commit is contained in:
Mikhail Glukhikh
2015-09-02 16:27:54 +03:00
parent fa292ec0e0
commit f92e91f045
3 changed files with 33 additions and 0 deletions
@@ -0,0 +1,8 @@
enum class MyEnum {
K;
inline fun doSmth(f: (MyEnum) -> String) : String {
// This function should be inline
return f(K)
}
}