roc
roc copied to clipboard
Crash e_lookup_local with tags
Roc compiler version debug-85b6a0fb
Maybe this can be minimized even further, but I got to this point, where I’m getting a e_lookup_local crash. Since I’m not familiar with this syntax, I’m not sure if the code is incorrect or not.
app [main!] { pf: platform "./platform/main.roc" }
main! = || {
count : Iter({})
count = It({})
_ignore = count.identity()
}
Iter(s) :: [It(s)].{
identity = |It(s_)| It(s_)
}