mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 23:42:34 +02:00
no message
This commit is contained in:
parent
295804263d
commit
915542df43
17
tests/tbs/tb0347.pp
Normal file
17
tests/tbs/tb0347.pp
Normal 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
6
tests/tbs/tb0348.pp
Normal 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
9
tests/tbs/tb0349.pp
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ %VERSION=1.1}
|
||||||
|
var
|
||||||
|
p : pwidechar;
|
||||||
|
c : widechar;
|
||||||
|
i : longint;
|
||||||
|
|
||||||
|
begin
|
||||||
|
c:=p[i];
|
||||||
|
end.
|
Loading…
Reference in New Issue
Block a user