mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02: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.
|