mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 18:10:29 +02:00
26 lines
289 B
ObjectPascal
26 lines
289 B
ObjectPascal
{ %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.
|
|
|
|
|