mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 14:23:25 +02:00
15 lines
203 B
ObjectPascal
15 lines
203 B
ObjectPascal
{ %NORUN }
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
ub0674;
|
|
|
|
var
|
|
LaunchRequest: TObject;
|
|
c: TMyClass;
|
|
begin
|
|
c:=TMyClass.Create;
|
|
LaunchRequest := c.specialize CreateObjectFromJSONString<TObject>('qwe');
|
|
end.
|