Skip to content

Code from 2018-07-12 doesn't typecheck. #59

Open
@leifmetcalf

Description

@leifmetcalf

The pretty instance for Mul:

instance (Pretty l, Pretty r) => Pretty (Mul l r) where
  pretty (Mul a b) = unwords [autoParens a, "*", autoParens b]
    where autoParens a@(Add _ _) = "(" ++ pretty a ++ ")"
               autoParens                   a = pretty a

Gives the following error:

    • Couldn't match expected type ‘Add l0 r0’ with actual type ‘l’
      ‘l’ is a rigid type variable bound by
        the instance declaration
        at /home/leif/Documents/type-level/src/Lib.hs:91:10-49
    • In the first argument of ‘autoParens’, namely ‘a’
      In the expression: autoParens a
      In the first argument of ‘unwords’, namely
        ‘[autoParens a, "*", autoParens b]’
    • Relevant bindings include
        a :: l (bound at /home/leif/Documents/type-level/src/Lib.hs:92:15)
        pretty :: Mul l r -> String
          (bound at /home/leif/Documents/type-level/src/Lib.hs:92:3)

And the same for autoParens b. I think I'm missing a LANGUAGE pragma somewhere that would prevent autoParens (Add _ _) from collapsing to Add l r -> String.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions