binutils-gdb/gdb/testsuite/gdb.chill/result.ch
Per Bothner ccda44f92f * result.ch, result.exp, Makefile.in: New test case.
* pr-4975.ch, pr-4975-grt.ch, pr-4975.exp, Makefile.in:  Ditto.
1994-06-14 23:23:14 +00:00

17 lines
256 B
Plaintext

test_result: MODULE
DCL i INT := 5;
simple_func: PROC () RETURNS (INT);
DCL j INT := i;
RESULT 10;
i + := 2;
RESULT j + 2;
i + := 2;
END simple_func;
i := simple_func ();
i := simple_func ();
i * := 10;
END test_result;