mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 18:10:29 +02:00
12 lines
113 B
ObjectPascal
12 lines
113 B
ObjectPascal
{ %fail }
|
|
|
|
type
|
|
TTest = record
|
|
Value: Byte;
|
|
case Integer of
|
|
0: (Value: Word);
|
|
end;
|
|
|
|
begin
|
|
end.
|