summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_compile/T10487.hs
blob: 473a1b37ef270fedd14017f9232ab1577944d5b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{-# LANGUAGE StandaloneDeriving, DeriveGeneric #-}

module T10487 where

import GHC.Generics

import qualified T10487_M as M

data Name = Name

deriving instance Generic Name
deriving instance Generic M.Name