Fix deprecated Range and Progression usages in testData
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
class MyRange1() : Range<Int> {
|
||||
class MyRange1() : ClosedRange<Int> {
|
||||
override val start: Int
|
||||
get() = 0
|
||||
override val end: Int
|
||||
override val endInclusive: Int
|
||||
get() = 0
|
||||
override fun contains(item: Int) = true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user