diff options
author | Per Bothner <per@bothner.com> | 1994-09-16 23:55:01 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1994-09-16 23:55:01 +0000 |
commit | ab8b59f441b94580f923a3021e2f8c6c15f5a268 (patch) | |
tree | 06e930d63fa856add164ae3e29cbe8719f86a223 /gdb/testsuite/gdb.chill/pr-5646.ch | |
parent | 637b166117dbbd3df6eedaec2873a45b4d10b3cc (diff) | |
download | gdb-ab8b59f441b94580f923a3021e2f8c6c15f5a268.zip gdb-ab8b59f441b94580f923a3021e2f8c6c15f5a268.tar.gz 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.ch | 15 |
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; |