]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.chill/extstruct-grt.ch
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.chill / extstruct-grt.ch
1 pot1: MODULE
2
3 SYNMODE m_array1 = ARRAY (2:3) ulong;
4 SYNMODE m_struct = STRUCT (f1 int,
5 f2 REF m_array1,
6 f3 m_array1);
7 SYNMODE m_array3 = ARRAY (5:6) m_struct;
8 SYNMODE m_array4 = ARRAY (7:8) ARRAY (9:10) m_struct;
9
10 GRANT all;
11
12 END pot1;