Update test affected by ProhibitUsingNullableTypeParameterAgainstNotNullAnnotated feature
This commit is contained in:
Vendored
+1
-1
@@ -9,6 +9,6 @@ public interface TypeParamOfClass {
|
||||
|
||||
public interface Super</*0*/ T : kotlin.Any!> {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
@org.jetbrains.annotations.NotNull public abstract fun foo(): T
|
||||
@org.jetbrains.annotations.NotNull public abstract fun foo(): T!!
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -9,6 +9,6 @@ public interface TypeParamOfClassSubstituted {
|
||||
|
||||
public interface Super</*0*/ T : kotlin.Any!> {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
@org.jetbrains.annotations.NotNull public abstract fun foo(): T
|
||||
@org.jetbrains.annotations.NotNull public abstract fun foo(): T!!
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -9,6 +9,6 @@ public interface TypeParamOfFun {
|
||||
|
||||
public interface Super {
|
||||
public abstract fun dummy(): kotlin.Unit
|
||||
@org.jetbrains.annotations.NotNull public abstract fun </*0*/ T : kotlin.Any!> foo(): T
|
||||
@org.jetbrains.annotations.NotNull public abstract fun </*0*/ T : kotlin.Any!> foo(): T!!
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user