Browse Source

* overloading test for multiple implementations

peter 22 years ago
parent
commit
a283810536
1 changed files with 18 additions and 0 deletions
  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.