Adjust test data after fixes about generic nullability
This commit is contained in:
@@ -10,7 +10,7 @@ class NotNullVarTest() {
|
||||
}
|
||||
}
|
||||
|
||||
private class NotNullVarTestGeneric<T>(val a1: String, val b1: T) {
|
||||
private class NotNullVarTestGeneric<T : Any>(val a1: String, val b1: T) {
|
||||
var a: String by Delegates.notNull()
|
||||
var b by Delegates.notNull<T>()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user