fpc/tests/test/tgeneric89.pp
svenbarth cc65ac20c5 Fix for Mantis #22220
ptype.pas:
  * read_named_type:
      allow specializations for pointers in Delphi modes
  * single_type: 
      correctly handle forwarddefs; as we can only specialize generics if
      they are completely defined (srsym<>nil) we don't need to return a 
      forward def, but instead return the specialized def itself
+ added tests to "test" instead of "webtbs" as no explicit tests were given 
  in the report

git-svn-id: trunk@21689 -
2012-06-24 10:35:21 +00:00

18 lines
164 B
ObjectPascal

{ %NORUN }
program tgeneric89;
{$mode delphi}
type
TTest<T> = record
end;
PTestLongInt = ^TTest<LongInt>;
PTestBoolean = ^TTest<Boolean>;
begin
end.