Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.5.2
-
None
-
None
Description
Expressions that contain an "as int" where the type is some built-in type (as opposed to a named class) fail.
For example, whereas "1 + (2 as int)" used to work, in the 1_5_X branch it nows throws:
No signature of method: java.lang.Integer.plus() is applicable for argument types: (java.lang.Integer) values:
{2}