* result.ch, result.exp, Makefile.in: New test case.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.chill / result.ch
CommitLineData
ccda44f9
PB
1test_result: MODULE
2
3 DCL i INT := 5;
4
5 simple_func: PROC () RETURNS (INT);
6 DCL j INT := i;
7 RESULT 10;
8 i + := 2;
9 RESULT j + 2;
10 i + := 2;
11 END simple_func;
12
13 i := simple_func ();
14 i := simple_func ();
15 i * := 10;
16END test_result;
This page took 0.023865 seconds and 4 git commands to generate.