mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
16 lines
262 B
ObjectPascal
16 lines
262 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
type
|
|
PFoo = ^TFoo;
|
|
TFoo = array[0..10] of Integer;
|
|
TBar = array[0..SizeOf(PFoo(nil)^)] of Integer;
|
|
var
|
|
Bar: TBar;
|
|
|
|
begin
|
|
if High(Bar) <> SizeOf(TFoo) then
|
|
WriteLn('Error: ', High(Bar), ' <> ', SizeOf(TFoo));
|
|
end.
|