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 @@
package a.b
open class Base {
fun foo() {
internal open class Base {
internal fun foo() {
}
}
class A : Base() {
inner class C {
fun test() {
internal class A : Base() {
internal inner class C {
internal fun test() {
super@A.foo()
}
}
@@ -1,10 +1,10 @@
open class B(i: Int) {
open fun call(): Int {
internal open class B internal constructor(i: Int) {
internal open fun call(): Int {
return 1
}
}
class A : B(10) {
internal class A internal constructor() : B(10) {
override fun call(): Int {
return super.call()