Repository URL to install this package:
|
Version:
3.0.0 ▾
|
{ %fail }
{ Gives under Kylix:
tw3930a.pp(22) Error: Incompatible types: 'TMyStringList' and 'TStringList'
}
{$ifdef fpc}
{$mode objfpc}
{$endif}
uses
Classes;
type
TMyStringList = type TStringlist;
var
list : TMyStringList;
begin
list:=TMyStringList.Create;
end.