summaryrefslogtreecommitdiff
path: root/ghc/compiler/tests/deSugar/ds027.hs
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/compiler/tests/deSugar/ds027.hs')
-rw-r--r--ghc/compiler/tests/deSugar/ds027.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/ghc/compiler/tests/deSugar/ds027.hs b/ghc/compiler/tests/deSugar/ds027.hs
new file mode 100644
index 0000000000..99a4d93ac2
--- /dev/null
+++ b/ghc/compiler/tests/deSugar/ds027.hs
@@ -0,0 +1,9 @@
+--!!! ds027 -- simple instances
+--
+module Test where
+
+data Foo = Bar | Baz
+
+instance Eq Foo where
+ Bar == Baz = True
+ Bar /= Baz = False