[GHC] #14490: TTG Snags
GHC
ghc-devs at haskell.org
Wed Nov 22 11:09:05 UTC 2017
#14490: TTG Snags
-------------------------------------+-------------------------------------
Reporter: alanz | Owner: (none)
Type: bug | Status: new
Priority: normal | Milestone:
Component: Compiler | Version: 8.3
Resolution: | Keywords:
Operating System: Unknown/Multiple | Architecture:
| Unknown/Multiple
Type of failure: None/Unknown | Test Case:
Blocked By: | Blocking:
Related Tickets: #14482 | Differential Rev(s):
Wiki Page: |
ImplementingTreesThatGrow |
-------------------------------------+-------------------------------------
Comment (by alanz):
But this does not
{{{#!hs
{-# LANGUAGE TypeFamilies, GADTs, FlexibleInstances, StandaloneDeriving,
DeriveDataTypeable #-}
module Foo where
import Data.Data
data T a where
MkT :: XT a -> a -> T a
type family XT a
type instance XT Bool = Int
type instance XT Char = Int
deriving instance Data (T Bool)
deriving instance Data (T Char)
}}}
And this models the situation in GHC
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/14490#comment:30>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list