fpc/tests/webtbs/tw2942a.pp
2004-02-08 23:28:38 +00:00

28 lines
309 B
ObjectPascal

unit tw2942a;
interface
{$mode Delphi}
Type
TIdStack = class
public
constructor Create; reintroduce; virtual;
destructor Destroy; override;
end;
implementation
constructor TIdStack.Create;
begin
inherited destroy;
end;
destructor TIdStack.Destroy;
begin
inherited Destroy;
end;
end.