mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 09:59:27 +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.
|