]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.chill/misc.ch
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.chill / misc.ch
1 misc_tests : MODULE;
2
3 DCL otto INT := 42;
4
5 DCL foo STRUCT (l LONG, c CHAR, b BOOL, s CHARS(3));
6
7 dummyfunc: PROC();
8 END dummyfunc;
9
10 dummyfunc();
11
12 END misc_tests;