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:
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
||||
// See KT-7296
|
||||
interface Out<out F>
|
||||
interface B<T> : Out<Out<T>>
|
||||
|
||||
fun foo(x : B<*>) {
|
||||
bar1(x)
|
||||
bar2(x)
|
||||
}
|
||||
|
||||
fun bar1(x : Out<Out<*>>) { }
|
||||
fun bar2(x : Out<*>) { }
|
||||
Reference in New Issue
Block a user