roc icon indicating copy to clipboard operation
roc copied to clipboard

Crash e_lookup_local with tags

Open mpizenberg opened this issue 1 month ago • 0 comments

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_)
}

mpizenberg avatar Dec 12 '25 02:12 mpizenberg