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
- [PENDING] should compare correctly to Integer and Float
Reason: https://github.com/enso-org/enso/issues/10163
Execution finished with an error: java.lang.AssertionError: Don't use interop for EnsoObject: org.enso.interpreter.runtime.error.WithWarnings
at <java> org.enso.runtime/org.enso.interpreter.runtime.library.dispatch.TypeOfNode$WithoutType$Interop.resolve(TypeOfNode.java:213)
at <java> org.enso.runtime/org.enso.interpreter.runtime.library.dispatch.TypeOfNode.withoutType(TypeOfNode.java:83)
at <java> org.enso.runtime/org.enso.interpreter.runtime.library.dispatch.TypeOfNodeGen.execute(TypeOfNodeGen.java:186)
at <java> org.enso.runtime/org.enso.interpreter.node.expression.builtin.meta.IsValueOfTypeNode.typeAndCheck(IsValueOfTypeNode.java:55)
at <java> org.enso.runtime/org.enso.interpreter.node.expression.builtin.meta.IsValueOfTypeNode$Untyped.doOther(IsValueOfTypeNode.java:180)
The text was updated successfully, but these errors were encountered:
Adding
-> Integer
to the checked return type ofDecimal.to_integer
results in the error below (when runningDecimal_Spec
).If the
Warning.attach
is removed, the problem goes away, so I imagine that the error we want to get here is something aboutAny
is notInteger
.(I also tried keeping
Warning.attach
but casting it to Integer, and also got the error below in that case.)Change on https://github.com/enso-org/enso/tree/bug/gmt/10613.
The text was updated successfully, but these errors were encountered: