mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-11 13:41:29 +01:00
8 lines
111 B
ObjectPascal
8 lines
111 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
type tenum = (b0, b1, b2, bMax = high(dword));
|
|
|
|
begin
|
|
writeln(sizeof(tenum));
|
|
end.
|