summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_run/T4528a.hs
blob: 85933671c7ce9ae15eeddbdc028ead7dd7e30da2 (plain)
1
2
3
4
5
6
7
-- Crashed older GHCs when loaded into GHCi

module Main where

data T a = A | B | C deriving( Enum, Show )

main = print [A ..]