dnadolny opened this issue 12 years ago · 1 comments
Java:
class C { private final int a; public C(int a) { this.a = a; } }
gets converted to:
class C(val a: Int)
but the val a: Int should really be private val a: Int, since in the Java code the field was private.
val a: Int
private val a: Int
Released in 0.3.1