Przeglądaj źródła

* overloading test for multiple implementations

peter 22 lat temu
rodzic
commit
a283810536
1 zmienionych plików z 18 dodań i 0 usunięć
  1. 18 0
      tests/tbf/tb0157.pp

+ 18 - 0
tests/tbf/tb0157.pp

@@ -0,0 +1,18 @@
+{ %fail }
+unit tb0157;
+
+interface
+
+procedure p1(w:word);
+
+implementation
+
+procedure p1(w:word);
+begin
+end;
+
+procedure p1(w:longint);
+begin
+end;
+
+end.