We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c410c52 commit d13a6beCopy full SHA for d13a6be
src/Data/Comp/Derive/Utils.hs
@@ -26,8 +26,11 @@ reportError :: String -> Q ()
26
reportError = report True
27
#endif
28
29
+#if __GLASGOW_HASKELL__ < 800
30
data DataInfo = DataInfo Cxt Name [TyVarBndr] [Con] [Name]
-
31
+#else
32
+data DataInfo = DataInfo Cxt Name [TyVarBndr] [Con] Cxt
33
+#endif
34
35
{-|
36
This is the @Q@-lifted version of 'abstractNewtype.
0 commit comments