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,12 +1,12 @@
class C(private val arg1: Int, private val arg2: Int, private val arg3: Int) {
internal class C internal constructor(private val arg1: Int, private val arg2: Int, private val arg3: Int) {
constructor(arg1: Int, arg2: Int, other: C) : this(arg1, arg2, 0) {
internal constructor(arg1: Int, arg2: Int, other: C) : this(arg1, arg2, 0) {
println(this.arg1 + other.arg2)
}
}
class User {
fun foo() {
internal class User {
internal fun foo() {
val c1 = C(100, 100, 100)
val c2 = C(100, 100, c1)
}