transpiler icon indicating copy to clipboard operation
transpiler copied to clipboard

bug, int8 from hex can give larger values than possible

Open larshp opened this issue 3 weeks ago • 0 comments

it should stay within 8 bytes,

FORM run.

  DATA foo TYPE xstring.
  DATA int TYPE int8.
  foo = '0AAAAAAAAAAAAAAAAA'.
  int = foo.
  WRITE / int.

ENDFORM.

START-OF-SELECTION.
  PERFORM run.

larshp avatar Dec 08 '25 12:12 larshp