* Same problem also appears with interface variables

git-svn-id: trunk@18915 -
This commit is contained in:
pierre 2011-08-30 10:27:26 +00:00
parent 2650326e6b
commit 09a50cc538
2 changed files with 7 additions and 0 deletions

View File

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

View File

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