Browse Source

* Same problem also appears with interface variables

git-svn-id: trunk@18915 -
pierre 14 years ago
parent
commit
09a50cc538
2 changed files with 7 additions and 0 deletions
  1. 4 0
      tests/webtbs/uvmt.pp
  2. 3 0
      tests/webtbs/uvmt_a.pp

+ 4 - 0
tests/webtbs/uvmt.pp

@@ -10,6 +10,10 @@ type
   a_tclass = class (tobject)
     x : integer;
   end;
+
+var
+  a_int : longint;
+
 implementation
 
 end.

+ 3 - 0
tests/webtbs/uvmt_a.pp

@@ -10,6 +10,9 @@ type
   tclass = class (tobject)
     x : integer;
   end;
+var
+  int : longint;
+
 implementation
 
 end.