Files
kotlin-fork/idea/testData/quickfix/changeSignature/addEnumConstructorParameter3.kt
T
Toshiaki Kameyama 7cad0052d9 "Add parameter to constructor": fix for enum entry
#KT-28995 Fixed
#KT-29051 Fixed
#KT-29052 Fixed
2019-01-24 11:00:59 +03:00

9 lines
149 B
Kotlin
Vendored

// "Add parameter to constructor 'Foo'" "true"
// DISABLE-ERRORS
enum class Foo(n: Int) {
A(1, 2<caret>),
B(3),
C(3, 4),
D(),
E
}