Browse Source

* added another dup id check

peter 25 years ago
parent
commit
b061f3bd69
1 changed files with 20 additions and 0 deletions
  1. 20 0
      tests/tbs/tbs0319.pp

+ 20 - 0
tests/tbs/tbs0319.pp

@@ -14,6 +14,26 @@ type
     procedure p2;
     procedure p2;
   end;
   end;
 
 
+ o = class
+       nonsense  :string;
+       procedure flup(nonsense:string);
+     end;
+
+ o2 = class
+       nonsense  :longint;
+       procedure flup(nonsense:longint);
+     end;
+
+procedure o.flup(nonsense:string);
+begin
+end;
+
+
+procedure o2.flup(nonsense:longint);
+begin
+end;
+
+
 procedure cl.p1;
 procedure cl.p1;
 var
 var
   k : longint;
   k : longint;