Open
Description
When I run the following code in type-check mode of the online editor:
songs = table: title, artist, play-count
row: "Song 1", "Artist A", 11
row: "Song 2", "Artist B", 22
row: "Song 3", "Artist C", 33
end
ab-songs = sieve songs using artist:
artist == "Artist B"
end
order ab-songs:
play-count ascending
end
I consistently get this message, instead of a typical result:
Internal errors prevented this error message from being shown. Please report this as a bug.
This code works without errors, including the usual type, when I run it in non type-check mode. I have commented-out code in the file too, but removing it didn't change the results.