Skip to content

Commit

Permalink
Build with ghc 9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfmpe committed Apr 10, 2024
1 parent 58428fb commit 80a1c6a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions aeson-gadt-th.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ flag build-readme

library
exposed-modules: Data.Aeson.GADT.TH
build-depends: base >= 4.8 && < 4.19
build-depends: base >= 4.8 && < 4.20
, aeson >= 1.3 && < 2.3
, containers >= 0.5 && < 0.7
, dependent-sum >= 0.4 && < 0.8
, transformers >= 0.5 && < 0.7
, template-haskell >= 2.11.0 && < 2.21
, th-abstraction >= 0.4 && < 0.5
, template-haskell >= 2.11.0 && < 2.22
, th-abstraction >= 0.4 && < 0.7
if impl(ghc < 8.2)
build-depends: dependent-sum < 0.6.2.2
hs-source-dirs: src
Expand All @@ -39,7 +39,7 @@ executable readme
build-depends: base
, aeson
, dependent-sum
, dependent-sum-template >= 0.1 && < 0.2
, dependent-sum-template >= 0.2 && < 0.3
, dependent-map >= 0.3 && < 0.5
, aeson-gadt-th
default-language: Haskell2010
Expand Down
2 changes: 1 addition & 1 deletion src/Data/Aeson/GADT/TH.hs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ kindArity = \case
-- its declaration, and the arity of the kind of type being defined (i.e. how many more arguments would
-- need to be supplied in addition to the bound parameters in order to obtain an ordinary type of kind *).
-- If the supplied 'Name' is anything other than a data or newtype, produces an error.
tyConArity' :: Name -> Q ([TyVarBndr_ ()], Int)
tyConArity' :: Name -> Q ([TyVarBndrVis], Int)

Check failure on line 276 in src/Data/Aeson/GADT/TH.hs

View workflow job for this annotation

GitHub Actions / GHC 8.4.4 on ubuntu-latest

Not in scope: type constructor or class ‘TyVarBndrVis’
tyConArity' n = reify n >>= return . \case
TyConI (DataD _ _ ts mk _ _) -> (ts, maybe 0 kindArity mk)
TyConI (NewtypeD _ _ ts mk _ _) -> (ts, maybe 0 kindArity mk)
Expand Down

0 comments on commit 80a1c6a

Please sign in to comment.