Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/enumWIthFunction.kt.after
T

9 lines
83 B
Plaintext
Vendored

enum class A {
E1(0), E2(1);
constructor(v: Int)
fun foo() {
}
}