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

Panic when implicitly referring method tyarg #494

Open
yhara opened this issue Jul 8, 2023 · 1 comment
Open

Panic when implicitly referring method tyarg #494

yhara opened this issue Jul 8, 2023 · 1 comment
Labels

Comments

@yhara
Copy link
Collaborator

yhara commented Jul 8, 2023

Given

class A   
  def self.foo<S>(s: S)                                             
    p Pair.new(s, s)   # == Pair<S, S>.new(s, s)
  end                                                               
end                                                                 
A.foo(3)

Expected

prints pair of 3 and 3

Actual

thread 'main' panicked at 'unexpected', lib/shiika_core/src/ty/term_ty.rs:158:18

Notes

We need to fix #493 before working on this.

@yhara yhara added the bug label Jul 8, 2023
@yhara
Copy link
Collaborator Author

yhara commented Dec 18, 2023

Got another error:

thread 'main' panicked at lib/shiika_core/src/ty/term_ty.rs:165:17:
assertion failed: !typaram_ref.as_class

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

No branches or pull requests

1 participant