JRI98
Results
13
comments of
JRI98
I copied it from an old example. Good catch.
Another reproducer: ```roc module [] last = |l| match l { [] -> Err(ListWasEmpty) [.., e] -> Ok(e) } ```
Even simpler: ```roc module [] foo = Bool.T ``` Note: the original example for this issue no longer reproduces. But it does if it is like this: ```roc module []...