Skip to content

Commit 22d5790

Browse files
committed
Fix GHC 9.2 build
Close #1513. GHC 9.2 needs explicit kind signature here, I don't really understand why. This kind signature is correct and not too restritive, because `HasLink` is technically defined `class HasLink endpoint` which means that it is infered as `k -> Constraint`. In the instance signature, we have `HasLink ((arr :: a -> b) :> sub)`, so here the `k` is the same kind as the one of `:>` which is not polykinded.
1 parent 75db4a5 commit 22d5790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

servant/src/Servant/Links.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ simpleToLink _ toA _ = toLink toA (Proxy :: Proxy sub)
649649
-- Erroring instance for 'HasLink' when a combinator is not fully applied
650650
instance TypeError (PartialApplication HasLink arr) => HasLink ((arr :: a -> b) :> sub)
651651
where
652-
type MkLink (arr :> sub) _ = TypeError (PartialApplication HasLink arr)
652+
type MkLink (arr :> sub) _ = TypeError (PartialApplication (HasLink :: * -> Constraint) arr)
653653
toLink = error "unreachable"
654654

655655
-- Erroring instances for 'HasLink' for unknown API combinators

0 commit comments

Comments
 (0)