blob: e7a24c45a9b6bb11fca57ceab3ffdc98248c88df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{-# LANGUAGE Haskell2010 #-}
module OrphanInstances where
import OrphanInstancesType
import OrphanInstancesClass
-- | This is an orphan instance.
instance AClass AType where
aClass (AType n) = n
|