aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/pr-5646.ch
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1994-09-16 23:55:01 +0000
committerPer Bothner <per@bothner.com>1994-09-16 23:55:01 +0000
commitab8b59f441b94580f923a3021e2f8c6c15f5a268 (patch)
tree06e930d63fa856add164ae3e29cbe8719f86a223 /gdb/testsuite/gdb.chill/pr-5646.ch
parent637b166117dbbd3df6eedaec2873a45b4d10b3cc (diff)
downloadfsf-binutils-gdb-ab8b59f441b94580f923a3021e2f8c6c15f5a268.zip
fsf-binutils-gdb-ab8b59f441b94580f923a3021e2f8c6c15f5a268.tar.gz
fsf-binutils-gdb-ab8b59f441b94580f923a3021e2f8c6c15f5a268.tar.bz2
* pr-5646.ch, pr-5646.exp, Makefile.in: New testcase.
Diffstat (limited to 'gdb/testsuite/gdb.chill/pr-5646.ch')
-rw-r--r--gdb/testsuite/gdb.chill/pr-5646.ch15
1 files changed, 15 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.chill/pr-5646.ch b/gdb/testsuite/gdb.chill/pr-5646.ch
new file mode 100644
index 0000000..186fbb7
--- /dev/null
+++ b/gdb/testsuite/gdb.chill/pr-5646.ch
@@ -0,0 +1,15 @@
+y: MODULE
+
+<> USE_SEIZE_FILE "x.grt" <>
+SEIZE a_ps;
+
+p: PROC ();
+
+ DCL xx a_ps;
+
+ xx := [a, b];
+END p;
+
+p();
+
+END y;