Fix the problem with ConvertPrimaryConstructorToSecondaryIntention for enum #KT-15406 Fixed

This commit is contained in:
shiraji
2017-01-13 00:46:16 +09:00
committed by Mikhail Glukhikh
parent 245f23e7c2
commit ad9bf1626f
12 changed files with 114 additions and 6 deletions
@@ -0,0 +1,9 @@
enum class A {
E1(0), E2(1);
constructor(v: Int)
fun foo() {
}
}