ghc: panic! (the 'impossible' happened) (GHC version 7.4.1 for i386-unknown-linux): DsMonad: uninitialised ds_parr_biPlease report this as a GHC bug: http://www.haskell.org/ghc/reportabug
Edited
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
GHC shouldn't panic, but instead give a proper error message, but the definition of transpose in Handy.hs is incorrect. It uses list pattern matching with (:) for parallel arrays. That is impossible as they are not inductively defined.
GHC shouldn't panic, but instead give a proper error message, but the definition of transpose in Handy.hs is incorrect. It uses list pattern matching with (:) for parallel arrays. That is impossible as they are not inductively defined.
Thanks for that. Naive coding. I have changed transposeP to this, and still get the same error.
ansposeP !a = [: [:x !: i | x <- a:] | i <- [:0..l:]:]