no message

This commit is contained in:
florian 2001-03-22 23:53:01 +00:00
parent 295804263d
commit 915542df43
3 changed files with 32 additions and 0 deletions

17
tests/tbs/tb0347.pp Normal file
View File

@ -0,0 +1,17 @@
{$mode objfpc}
{$M+}
type
tenum = (te_first,te_second,te_third,te_fourth,te_fifth);
tenumrange = te_second..te_fourth;
tc1 = class
public
fe : tenumrange;
published
property enumrange : tenumrange read fe write fe;
end;
begin
end.

6
tests/tbs/tb0348.pp Normal file
View File

@ -0,0 +1,6 @@
{ $VERSION=1.1}
const
GUID_NULL : TGUID = '{00000000-0000-0000-0000-000000000000}';
begin
end.

9
tests/tbs/tb0349.pp Normal file
View File

@ -0,0 +1,9 @@
{ %VERSION=1.1}
var
p : pwidechar;
c : widechar;
i : longint;
begin
c:=p[i];
end.