summaryrefslogtreecommitdiff
path: root/tests/webtbs/tw36250.pp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/webtbs/tw36250.pp')
-rw-r--r--tests/webtbs/tw36250.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/webtbs/tw36250.pp b/tests/webtbs/tw36250.pp
new file mode 100644
index 0000000000..569294da6f
--- /dev/null
+++ b/tests/webtbs/tw36250.pp
@@ -0,0 +1,15 @@
+{ %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.