mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 12:32:25 +02:00
18 lines
371 B
ObjectPascal
18 lines
371 B
ObjectPascal
{ %version=1.1 }
|
|
{ %fail }
|
|
{ Source provided for Free Pascal Bug Report 2670 }
|
|
{ Submitted by "marco" on 2003-09-07 }
|
|
{ e-mail: marco@freepascal.org }
|
|
program bugje;
|
|
{$mode delphi}
|
|
|
|
Uses Classes;
|
|
|
|
type theenum = (hello,hi, hoi);
|
|
testme= class(TComponent)
|
|
field : theenum;
|
|
end;
|
|
|
|
begin
|
|
end.
|