mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
13 lines
162 B
Plaintext
13 lines
162 B
Plaintext
misc_tests : MODULE;
|
|
|
|
DCL otto INT := 42;
|
|
|
|
DCL foo STRUCT (l LONG, c CHAR, b BOOL, s CHARS(3));
|
|
|
|
dummyfunc: PROC();
|
|
END dummyfunc;
|
|
|
|
dummyfunc();
|
|
|
|
END misc_tests;
|