A
alezhu
Guest
Start chui under 11.7 version. Run code below: def var a as longchar no-undo. def var b as longchar no-undo. def var c as longchar no-undo. a = "a1". b = "b2". c = "c3". function test longchar(a as longchar): def var dd as longchar. dd = a. return dd. end. a = a + c + test(b). MESSAGE STRING(a). Result is c3b2 Expecting result: a1c3b2 Under gui version all works correctly! Under linux chui may get core dump while compiling.
Continue reading...
Continue reading...