mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:48:00 +02:00
11 lines
185 B
ObjectPascal
11 lines
185 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw33839a;
|
|
{$mode objfpc} // change to mode Delphi and it works
|
|
uses uw33839;
|
|
begin
|
|
testme(100);
|
|
testme(1.0);
|
|
specialize testme<String>('Test');
|
|
end.
|