Change signature fix: correct parameter add / remove from enum constructor calls, relevant test fixes

This commit is contained in:
Mikhail Glukhikh
2015-08-06 15:46:37 +03:00
parent 8405a9a021
commit fe716d7e56
11 changed files with 57 additions and 45 deletions
@@ -1,4 +1,4 @@
enum class E(n: Int) {
A : E(1)
B : E(1)
A(1),
B(1)
}
@@ -1,4 +1,4 @@
enum class <caret>E {
A
A,
B
}