diff options
Diffstat (limited to 'gdb/testsuite/gdb.chill/pr-9946.ch')
-rw-r--r-- | gdb/testsuite/gdb.chill/pr-9946.ch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.chill/pr-9946.ch b/gdb/testsuite/gdb.chill/pr-9946.ch new file mode 100644 index 00000000000..3d9210a5b8d --- /dev/null +++ b/gdb/testsuite/gdb.chill/pr-9946.ch @@ -0,0 +1,10 @@ +x: module + +synmode aset = SET (stopped, moving); + +DCL xyz aset; + +xyz := moving; +xyz := SUCC (xyz); + +END x; |