+ test for qualified vars in assembler reader

This commit is contained in:
Jonas Maebe 2001-03-27 09:16:00 +00:00
parent c2e90d2919
commit 388bd7c43d

11
tests/test/tasmread.pp Normal file
View File

@ -0,0 +1,11 @@
program test;
{$asmmode intel}
var l: longint;
begin
asm
mov test.l, 5
end;
end.