mirror of
https://github.com/type-challenges/type-challenges.git
synced 2025-12-08 19:06:13 +00:00
test: fix false negative in 04518-medium-fill when start, end are both out of bounds and not inverted (#21521)
This commit is contained in:
parent
b834438c45
commit
fb656ee0d5
@ -10,5 +10,6 @@ type cases = [
|
||||
Expect<Equal<Fill<[1, 2, 3], true, 0, 1>, [true, 2, 3]>>,
|
||||
Expect<Equal<Fill<[1, 2, 3], true, 1, 3>, [1, true, true]>>,
|
||||
Expect<Equal<Fill<[1, 2, 3], true, 10, 0>, [1, 2, 3]>>,
|
||||
Expect<Equal<Fill<[1, 2, 3], true, 10, 20>, [1, 2, 3]>>,
|
||||
Expect<Equal<Fill<[1, 2, 3], true, 0, 10>, [true, true, true]>>,
|
||||
]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user