diff options
Diffstat (limited to 'gdb/testsuite/gdb.chill/pr-8894.ch')
-rw-r--r-- | gdb/testsuite/gdb.chill/pr-8894.ch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.chill/pr-8894.ch b/gdb/testsuite/gdb.chill/pr-8894.ch new file mode 100644 index 0000000..391d56b --- /dev/null +++ b/gdb/testsuite/gdb.chill/pr-8894.ch @@ -0,0 +1,12 @@ +xx: MODULE + +<> USE_SEIZE_FILE "pr-8894-grt.grt" <> +SEIZE m_byte; + +SYNMODE m_struct = STRUCT (a, b, c m_byte); + +DCL v m_struct; + +v.a := 100; + +END xx; |