Sfoglia il codice sorgente

* overloading test for multiple implementations

peter 22 anni fa
parent
commit
a283810536
1 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  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.