Fix supertypes calculation for types with projections

Use captured types as replacement for non top-level entries

 #KT-7296 Fixed
This commit is contained in:
Denis Zharkov
2015-12-23 12:59:42 +03:00
parent 397d2ca312
commit 722a152a74
11 changed files with 139 additions and 7 deletions
@@ -1,6 +1,8 @@
package
public fun bar(/*0*/ x: A<A<*>>): kotlin.Unit
public fun bar1(/*0*/ x: A<A<*>>): kotlin.Unit
public fun bar2(/*0*/ x: A<out A<*>>): kotlin.Unit
public fun bar3(/*0*/ x: A<*>): kotlin.Unit
public fun foo(/*0*/ x: B<*>): kotlin.Unit
public interface A</*0*/ T> {