#3577: Complete support for Data Parallel Haskell
--------------------------------------+-------------------------------------
Reporter: rl | Owner: rl
Type: feature request | Status: new
Priority: normal | Milestone: _|_
Component: Data Parallel Haskell | Version: 6.13
Keywords: | Difficulty: Unknown
Os: Unknown/Multiple | Testcase:
Architecture: Unknown/Multiple | Failure: Compile-time crash
--------------------------------------+-------------------------------------
Comment(by benl):
List range sugar doesn't work
Rewrite this:
{{{
facP :: Int -> Int
facP x = productP [: 1 .. x :]
}}}
as:
{{{
facP :: Int -> Int
facP x = productP (enumFromToP 1 x)
}}}
--
Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/3577#comment:4>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
_______________________________________________
Glasgow-haskell-bugs mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs