Browse Source

* overloading test for multiple implementations

peter 22 năm trước cách đây
mục cha
commit
a283810536
1 tập tin đã thay đổi với 18 bổ sung0 xóa
  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.