fpc/tests/webtbs/tw36250.pp
2021-02-27 21:44:53 +00:00

16 lines
246 B
ObjectPascal

{ %norun }
{ %target=darwin,ios,iphonesim}
{ %opt=-gw3 }
{$mode objfpc}{$h+}
{$ModeSwitch objectivec2}
function NSStringToString(ns: NSString): String;
begin
Result := '';
end;
begin
WriteLn(NSStringToString(nil));
end.