mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 18:10:29 +02:00
19 lines
216 B
ObjectPascal
19 lines
216 B
ObjectPascal
{ %result=201 }
|
|
|
|
{ checks proper saving of compiler state }
|
|
{$mode objfpc}
|
|
|
|
{$R-}
|
|
uses
|
|
ugeneric7;
|
|
|
|
type
|
|
tmytype = specialize tgeneric<byte>;
|
|
var
|
|
s : tmytype;
|
|
begin
|
|
s:=tmytype.create;
|
|
s.test;
|
|
s.free;
|
|
end.
|