aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/pr-9946.ch
diff options
context:
space:
mode:
authorWilfried Moser <moser@cygnus>1996-09-04 14:34:15 +0000
committerWilfried Moser <moser@cygnus>1996-09-04 14:34:15 +0000
commit9811b596028324839745905983ae940ae988f8cd (patch)
tree2e6d40ea45f28caa4a33e0e1c370e4651de06393 /gdb/testsuite/gdb.chill/pr-9946.ch
parentb5865bb26302045a3ff07bdb12ff1441827b61f7 (diff)
downloadgdb-9811b596028324839745905983ae940ae988f8cd.zip
gdb-9811b596028324839745905983ae940ae988f8cd.tar.gz
gdb-9811b596028324839745905983ae940ae988f8cd.tar.bz2
* gch1272.{ch,exp}, gch1280.{ch,exp}, pr-9946.{ch,exp}:
New test cases.
Diffstat (limited to 'gdb/testsuite/gdb.chill/pr-9946.ch')
-rw-r--r--gdb/testsuite/gdb.chill/pr-9946.ch10
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 0000000..3d9210a
--- /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;