I found this problem with the current "beta" GPC: Code Segment ============ PROGRAM TEST; VAR CharSet : SET OF CHAR; BEGIN CharSet := [#192, #193, #194, #195]; END. Error Message During Compile ============================ test.pas: In function `program_Test': test.pas:6: type of set constructor element must be the set basetype The error goes away if new-line after #193 is removed: CharSet := [#192,#193,#194,#195]; Thanks; Phil ------------------------------------------------------------------------- Philip A. Robertson <phil_robertson@gilbarco.com> Gilbarco Inc. F-78 Phone (910) 547-5164 7300 W. Friendly Ave Fax (910) 292-8871 Greensboro, NC 27410 -------------------------------------------------------------------------
participants (1)
-
Phil Robertson