Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/projectionsScope/recursiveUpperBoundStarOut.txt
T
Denis Zharkov 722a152a74 Fix supertypes calculation for types with projections
Use captured types as replacement for non top-level entries

 #KT-7296 Fixed
2015-12-28 11:13:39 +03:00

18 lines
749 B
Plaintext
Vendored

package
public fun bar1(/*0*/ x: Out<Out<*>>): kotlin.Unit
public fun bar2(/*0*/ x: Out<*>): kotlin.Unit
public fun foo(/*0*/ x: B<*>): kotlin.Unit
public interface B</*0*/ T> : Out<Out<T>> {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
public interface Out</*0*/ out F> {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}