12345678910111213141516171819202122232425 |
- { %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.
-
|