Skip to content

Instantly share code, notes, and snippets.

@a-hisame
Created September 3, 2014 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a-hisame/eb6bf5c03c886ef25774 to your computer and use it in GitHub Desktop.
Save a-hisame/eb6bf5c03c886ef25774 to your computer and use it in GitHub Desktop.
当たり前だけれど、Eqのデフォルト実装を上書きしない場合、無限ループに陥る。
-- test on ghci console
data Present a = Redbox a | Bluebox a deriving Show
instance Eq (Present a)
let a = Redbox 10
let b = Redbox 30
-- never stop
a == b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment