fpc/tests/webtbs/tw21592.pp

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.