peter 21 anni fa
parent
commit
f630197582
1 ha cambiato i file con 19 aggiunte e 0 eliminazioni
  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.
+