mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 08:07:56 +02:00
15 lines
149 B
ObjectPascal
15 lines
149 B
ObjectPascal
{ %norun }
|
|
{ %opt=-FcCP1252 }
|
|
|
|
program project1;
|
|
|
|
Type
|
|
WideArray = array [0..3] of Widechar;
|
|
|
|
var
|
|
Test: WideArray;
|
|
|
|
begin
|
|
Test := 'hmmm';
|
|
end.
|