| Summary: | Invalid error message when compiling a >= expression | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Brian Svihovec <svihovec> |
| Component: | EDT | Assignee: | Project Inbox <edt.compiler-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | pharmon |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
I have updated DefaultBinder to allow this type of comparison This defect was fixed at least 2 months ago, so I am closing. |
Create a program named P2 and add the source below. The following validation error is reported: IWN.VAL.5048.e 10/6 {0} - Only valid comparison between ref types is == or !=. At line {1} in file {2} Source: program P2 type BasicProgram {} var1 string; var2 string; function main() if((var1 as decimal) >= (var2 as decimal)) end end end