summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/T13324_compile.hs
blob: 670744e668e15d5496bc6142eb9b3f2c245e93b7 (plain)
1
2
3
4
5
6
7
{-# LANGUAGE PartialTypeSignatures #-}
{-# LANGUAGE StandaloneDeriving #-}
module T13324_compile where

data Option a = None | Some a

deriving instance _ => Show (Option a)