mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
fix uniqueness bug
builtin defs were included twice, which threw off uniqueness inference
This commit is contained in:
parent
78d1a01742
commit
2df86b6438
3 changed files with 4 additions and 6 deletions
|
@ -1,6 +1,7 @@
|
|||
app Quicksort provides [ quicksort ] imports []
|
||||
|
||||
quicksort = \originalList ->
|
||||
|
||||
quicksortHelp : List (Num a), Int, Int -> List (Num a)
|
||||
quicksortHelp = \list, low, high ->
|
||||
if low < high then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue