mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-13 23:29:03 +00: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;
|