mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00

tests o currently not yet integrated in the makefile system, use testall.sh/ testall.bat to run the tests git-svn-id: branches/jvmbackend@18777 -
14 lines
151 B
ObjectPascal
14 lines
151 B
ObjectPascal
unit uenum;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
type
|
|
myenumjumps = (meja = 5, mejb = -5, mejc = 102);
|
|
myenum = (mea, meb, mec, med);
|
|
|
|
implementation
|
|
|
|
end.
|