mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +02:00
24 lines
380 B
ObjectPascal
24 lines
380 B
ObjectPascal
{ %fail }
|
|
unit tw25769;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
TDbgSymbolValue = class(TObject)
|
|
protected
|
|
function GetMemberCountEx(AIndex: array of Integer): Integer;
|
|
public
|
|
property MemberCountEx[AIndex: array of Integer]: Integer read GetMemberCountEx;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
function TDbgSymbolValue.GetMemberCountEx(AIndex: Integer): Integer;
|
|
begin
|
|
end;
|
|
|
|
end.
|