diku-dk / futhark

:boom::computer::boom: A data-parallel functional programming language
http://futhark-lang.org
ISC License
2.35k stars 164 forks source link

Internal compiler error #2113

Closed patrick-nicodemus closed 4 months ago

patrick-nicodemus commented 4 months ago

I found that a small typo of accidentally omitting a polymorphic type annotation can crash the compiler.

module type abc = {
  type x 'a
  val y : x a
} 

Here there should be an 'a after y, but there should be a more graceful error handling.