Kapt: Fix supertype conversion for DefaultImpls (KT-28306)

This commit is contained in:
Yan Zhulanow
2019-02-01 21:30:37 +03:00
parent 3a768060ca
commit 1c824655d4
4 changed files with 61 additions and 0 deletions
@@ -0,0 +1,9 @@
// CORRECT_ERROR_TYPES
package foo
interface InterfaceWithDefaults<T> {
fun foo() {}
}
interface SubInterface<T> : InterfaceWithDefaults<T>