fix tests in org.jetbrains.kotlin.jvm.compiler

This commit is contained in:
Michael Nedzelsky
2015-09-04 17:54:28 +03:00
parent bc5c9065d2
commit ece8bb07b2
85 changed files with 296 additions and 296 deletions
@@ -1,11 +1,11 @@
package test
internal fun bar(/*0*/ test.K<*>): kotlin.Unit
public fun bar(/*0*/ test.K<*>): kotlin.Unit
internal open class K</*0*/ out T : test.K<T>> {
public open class K</*0*/ out T : test.K<T>> {
public constructor K</*0*/ out T : test.K<T>>()
internal final fun foo(): test.K<*>
internal final fun foo(/*0*/ test.K<*>): kotlin.Unit
public final fun foo(): test.K<*>
public final fun foo(/*0*/ test.K<*>): kotlin.Unit
}
public open class StarProjection {
@@ -13,8 +13,8 @@ public open class StarProjection {
public/*package*/ open fun foo(/*0*/ test.K<*>!): kotlin.Unit
}
internal final class Sub : test.K<test.K<*>> {
public final class Sub : test.K<test.K<*>> {
public constructor Sub()
internal final /*fake_override*/ fun foo(): test.K<*>
internal final /*fake_override*/ fun foo(/*0*/ test.K<*>): kotlin.Unit
public final /*fake_override*/ fun foo(): test.K<*>
public final /*fake_override*/ fun foo(/*0*/ test.K<*>): kotlin.Unit
}