Skip to content

Instantly share code, notes, and snippets.

@crappygraphix
Last active April 24, 2019 17:58
Show Gist options
  • Save crappygraphix/193378fb7764032b2abcd26a584aa593 to your computer and use it in GitHub Desktop.
Save crappygraphix/193378fb7764032b2abcd26a584aa593 to your computer and use it in GitHub Desktop.
Instance of Show causing infinite loops
-- Potential infinite loop
instance Show VersionStatus where
show PrivatePreview = "Private Preview"
show PublicPreview = "Public Preview"
show x = show x
-- Not an infinite loop
instance Show VersionStatus where
show PrivatePreview = "Private Preview"
show PublicPreview = "Public Preview"
show x = show $ toConstr x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment