fix tests in org.jetbrains.kotlin.checkers

This commit is contained in:
Michael Nedzelsky
2015-09-03 15:25:57 +03:00
parent a3f22939f1
commit bc5c9065d2
2821 changed files with 12932 additions and 12960 deletions

View File

@@ -2,7 +2,7 @@ package test
public final class Sub : test.Super {
public constructor Sub()
internal open fun foo(/*0*/ r: (() -> kotlin.Unit)?): kotlin.Unit
public open fun foo(/*0*/ r: (() -> kotlin.Unit)?): kotlin.Unit
public/*package*/ open override /*1*/ /*fake_override*/ fun foo(/*0*/ r: java.lang.Runnable!): kotlin.Unit
}

View File

@@ -2,10 +2,10 @@ package test
public open class Sub : test.Super {
public constructor Sub()
internal final override /*1*/ /*fake_override*/ fun foo(/*0*/ r: java.lang.Runnable): kotlin.Unit
public final override /*1*/ /*fake_override*/ fun foo(/*0*/ r: java.lang.Runnable): kotlin.Unit
}
public final class Super {
public constructor Super()
internal final fun foo(/*0*/ r: java.lang.Runnable): kotlin.Unit
public final fun foo(/*0*/ r: java.lang.Runnable): kotlin.Unit
}

View File

@@ -7,5 +7,5 @@ public open class Sub : test.Super {
public final class Super {
public constructor Super()
internal final fun foo(/*0*/ r: java.lang.Runnable): kotlin.Unit
public final fun foo(/*0*/ r: java.lang.Runnable): kotlin.Unit
}