enum class A { E1(0, 0), E2(1, 1); val a: Int val b: Int constructor(a: Int, b: Int) { this.a = a this.b = b } }