mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 14:31:59 +02:00
15 lines
213 B
ObjectPascal
15 lines
213 B
ObjectPascal
{$MODE DELPHI}
|
|
|
|
type
|
|
TBytesOverlay<T> = array [0..SizeOf(T) - 1] of Byte;
|
|
{ Error: Identifier not found "T" }
|
|
|
|
var
|
|
a : TBytesOverlay<Byte>;
|
|
|
|
begin
|
|
if sizeof(a)<>1 then
|
|
halt(1);
|
|
writeln('ok');
|
|
end.
|