MicroHs icon indicating copy to clipboard operation
MicroHs copied to clipboard

Kind synonyms do not work

Open Rewbert opened this issue 5 months ago • 1 comments

As discussed in our meeting, this does not compile

module Example(fac, main) where

import Data.TypeLits
import Data.Proxy

type LocTy = Symbol

type LocTm = String

toLocTm :: forall (l :: LocTy) . KnownSymbol l => Proxy l -> LocTm
toLocTm = undefined

main :: IO ()
main = undefined

Rewbert avatar Jun 26 '25 15:06 Rewbert

Definite a bug. It will have to wait until I implement type data.

augustss avatar Jul 01 '25 17:07 augustss