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,11 +1,11 @@
// ERROR: There's a cycle in the inheritance hierarchy for this type
// ERROR: There's a cycle in the inheritance hierarchy for this type
open class A : B() {
public open fun foo(s: String) {
internal open class A : B() {
open fun foo(s: String) {
}
}
open class B : A() {
public open fun foo(s: String) {
internal open class B : A() {
open fun foo(s: String) {
}
}