Fix propagation of definitelyNotNull types from overrides
This commit is contained in:
committed by
Mikhael Bogdanov
parent
cba224b7b8
commit
8f484fcf88
Vendored
+1
-1
@@ -4,7 +4,7 @@ public interface TypeParamOfClass {
|
||||
|
||||
public interface Sub</*0*/ T : kotlin.Any!> : test.TypeParamOfClass.Super<T!> {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun foo(): T
|
||||
public abstract override /*1*/ fun foo(): T!!
|
||||
}
|
||||
|
||||
public interface Super</*0*/ T : kotlin.Any!> {
|
||||
|
||||
Vendored
+1
-1
@@ -4,7 +4,7 @@ public interface TypeParamOfFun {
|
||||
|
||||
public interface Sub : test.TypeParamOfFun.Super {
|
||||
public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
|
||||
public abstract override /*1*/ fun </*0*/ E : kotlin.Any!> foo(): E
|
||||
public abstract override /*1*/ fun </*0*/ E : kotlin.Any!> foo(): E!!
|
||||
}
|
||||
|
||||
public interface Super {
|
||||
|
||||
Reference in New Issue
Block a user