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

Fail polymorphism recursive function test cases (test31, test33) #3

Open
SeungUkLee opened this issue Feb 9, 2023 · 0 comments
Open

Comments

@SeungUkLee
Copy link
Owner

Test31

  • code
let rec f = fn x =>
  f (malloc x); f (write "1"); x
in
  ((f 1) = (f f 1), f f "1")
end
  • test result
Expected: (bool , string)
Actual: Type Checking Failed

Test33

  • code
let rec f = fn x =>
  (f x) = (f x); malloc (f x); write (f x); x
in
  let val x = "const" in f f x end
end

  • test result
Expected: string
Actual: Type Checking Failed
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