mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00

to complex types (caused a lot of internal errors later on, and was also Delphi-incompatible) git-svn-id: trunk@8369 -
8 lines
90 B
ObjectPascal
8 lines
90 B
ObjectPascal
{ %fail }
|
|
|
|
type T4Char = array[0..3] of char;
|
|
begin
|
|
writeln(T4Char(65)[0]);
|
|
end.
|
|
|