fpc/tests/test/tgenfunc9.pp
2015-11-21 16:53:11 +00:00

15 lines
283 B
ObjectPascal

program tgenfunc9;
uses
ugenfunc7;
var
t: TTest;
begin
t := TTest.Create;
Writeln(t.specialize GetStrictPrivate<LongInt>);
Writeln(t.specialize GetPrivate<LongInt>);
Writeln(t.specialize GetStrictProtected<LongInt>);
Writeln(t.specialize GetProtected<LongInt>);
end.