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
@@ -2,7 +2,7 @@
// ERROR: Unresolved reference: finalize
package test
class Test : Base() {
internal class Test : Base() {
override fun hashCode(): Int {
return super.hashCode()
}
@@ -26,7 +26,7 @@ class Test : Base() {
}
}
open class Base {
internal open class Base {
override fun hashCode(): Int {
return super.hashCode()
}