fpc/tests/webtbs/tw20003.pp
Jonas Maebe 64be3440d7 * fixed skiptarget directive
git-svn-id: trunk@20830 -
2012-04-11 18:05:40 +00:00

20 lines
339 B
ObjectPascal

{ %skiptarget=aix }
{ %opt=-gs }
program ustabslink;
{$mode objfpc}{$H+}
uses
Classes, SysUtils, fgl;
type
TMyClass = class end;
TControlObjectSpecializedWithAVeryLongNameOfClass = class end;
TMyType = TControlObjectSpecializedWithAVeryLongNameOfClass; // Error
TSpecControlInfo = specialize TFPGList<TMyType>;
begin
end.