packages feed

lhc-0.10: tests/bugs/UnpackedPoly.hs

-- This triggers the same issue that prevents HashTable from building

data Foo a = Foo [a] deriving Show

data Bar a = Bar !(Foo a) deriving Show

main = print (Bar (Foo ["Hi!"]))