[c6a232]: / test / expr-unary.test.expected  Maximize  Restore  History

Download this file

10 lines (9 with data), 111 Bytes

FUNCTION test:DINT;
b: POINTER TO DINT;
  a := -1;
 a := +2;
 a := ~4;
 a := b^;
 a := -a;
 a := +a;
 a := ~a;