* bugs from marco

This commit is contained in:
peter 2000-08-20 15:57:56 +00:00
parent 0e38e5898d
commit c94fc2a448
3 changed files with 34 additions and 0 deletions

9
tests/tbf/tbf0347.pp Normal file
View File

@ -0,0 +1,9 @@
{$mode delphi}
type x = ^longint;
var y:x;
begin
y [5]:=5;
end.

14
tests/tbf/tbf0349.pp Normal file
View File

@ -0,0 +1,14 @@
{$mode delphi}
type
TCl=class;
const
b=1;
type
TCL=class
end;
begin
end.

11
tests/tbs/tbs0348.pp Normal file
View File

@ -0,0 +1,11 @@
{$mode delphi}
type fluparr=array[0..1000] of longint;
flupptr=^fluparr;
var flup : Flupptr;
Flupresult : longint;
begin
flupresult:=flup[5];
end.