peter 21 年 前
コミット
f630197582
1 ファイル変更19 行追加0 行削除
  1. 19 0
      tests/webtbs/tw2927.pp

+ 19 - 0
tests/webtbs/tw2927.pp

@@ -0,0 +1,19 @@
+{$mode objfpc}
+
+uses
+  Classes;
+
+procedure ReadTest(const p: Pointer); overload;
+begin
+end;
+
+procedure ReadTest(const p: TStream); overload;
+begin
+end;
+
+var
+  f: TFileStream;
+begin
+  ReadTest(f);
+end.
+