mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
13 lines
220 B
ObjectPascal
13 lines
220 B
ObjectPascal
{ %fail }
|
|
|
|
{ Source provided for Free Pascal Bug Report 2972 }
|
|
{ Submitted by "Michalis Kamburelis" on 2004-02-13 }
|
|
{ e-mail: michalis@camelot.homedns.org }
|
|
type
|
|
TEnum = (one, two);
|
|
|
|
var s:String;
|
|
begin
|
|
s:=one;
|
|
end.
|