Build fix: multi-module quick fix test file rename

This commit is contained in:
mglukhikh
2017-01-05 22:27:54 +03:00
parent 5db75c993b
commit 238eaf0d0e
14 changed files with 0 additions and 0 deletions
@@ -0,0 +1,17 @@
// MyEnum: to be implemented
impl enum class MyEnum {
FIRST,
SECOND,
LAST;
companion object {
fun byNum(num: Int): MyEnum = when (num) {
1 -> FIRST
2 -> SECOND
else -> LAST
}
}
impl val num: Int
get() = TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}