You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cast added on TransTypes stage because javac plugin adds a custom method-operator which confused the compiler.
Fixed by moving desugar to TransTypes stage.
For example when multiplying Vector to Matrix:
a*A
transforms to((Mat)a).multiply(A)
which causes ClassCastException at runtime.
The text was updated successfully, but these errors were encountered: