Change Signature: Update enum entries w/o delegation specifier when changing signature of enum class constructor

#KT-5978 Fixed
This commit is contained in:
Alexey Sedunov
2014-11-14 20:38:41 +03:00
parent 5bfdb8ee60
commit ddccc0e640
10 changed files with 90 additions and 22 deletions
@@ -0,0 +1,4 @@
enum class E(n: Int) {
A : E(1)
B : E(1)
}
@@ -0,0 +1,4 @@
enum class <caret>E {
A
B
}