mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:29:34 +02:00
15 lines
283 B
ObjectPascal
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.
|