Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type error when parameters don't match expected length could be more clear #115

Open
brekk opened this issue Jul 1, 2023 · 0 comments
Open

Comments

@brekk
Copy link
Contributor

brekk commented Jul 1, 2023

Sometimes when I'm iterating I make stupid mistakes like this:

tooFew :: Integer -> Integer -> Integer
tooFew = (a, b, c, d, e) => a + b * c + d * e

tooMany :: Integer -> Integer -> Integer
tooMany = (a) => a * a

main = () => {
  tooFew(1,2,3)
  tooMany(1,2)
}

This results in these errors:

[error]: Type error
     ╭──▶ ~/madness/stranger/src/Temp.mad@1:1-2:46
     │
   1 │ ╭┤ tooFew :: Integer -> Integer -> Integer
   2 │ ├┤ tooFew = (a, b, c, d, e) => a + b * c + d * e
     • │
     • ╰╸ expected:
     •      Integer -> Integer -> Integer
     •
     •    but found:
     •      Integer
     •      -> Integer
     •      -> (Integer -> Integer -> Integer -> Integer)
     •
─────╯

[error]: Type error
     ╭──▶ ~/madness/stranger/src/Temp.mad@4:1-5:23
     │
   4 │ ╭┤ tooMany :: Integer -> Integer -> Integer
   5 │ ├┤ tooMany = (a) => a * a
     • │
     • ╰╸ expected:
     •      Integer -> (Integer -> Integer)
     •
     •    but found:
     •      Integer -> Integer
     •
─────╯

[error]: Type error
     ╭──▶ ~/madness/stranger/src/Temp.mad@8:14-8:15
     │
   8 │   tooFew(1,2,3)
     •              ┬
     •              ╰╸ expected:
     •                   Integer
     •
     •                 but found:
     •                   a -> b
     •
─────╯

Ideally if there were a hint to indicate that the listed number of parameters doesn't match the signature I'd have a better understanding of what these errors mean — I understand it now but when I made the mistake earlier I didn't understand what the types in parentheses indicated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant