J2K: adapted for default visibility modifier 'public'

This commit is contained in:
Valentin Kipyatkov
2015-09-15 11:29:27 +03:00
parent 1ccbda6af4
commit c3ddd5d32b
477 changed files with 1359 additions and 1350 deletions
@@ -1,13 +1,13 @@
// ERROR: Val cannot be reassigned
// ERROR: Val cannot be reassigned
class A {
internal class A {
private val s = ""
private val x = 0
public constructor() {
constructor() {
}
JvmOverloads public constructor(p: Int, s: String, x: Int = 1) {
JvmOverloads constructor(p: Int, s: String, x: Int = 1) {
this.s = s
this.x = x
}