mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-03 00:07:28 +01:00
to complex types (caused a lot of internal errors later on, and
was also Delphi-incompatible)
git-svn-id: trunk@8369 -
9 lines
84 B
ObjectPascal
9 lines
84 B
ObjectPascal
{ %fail }
|
|
|
|
type
|
|
tr = record b: byte; end;
|
|
begin
|
|
writeln(tr(65).b);
|
|
end.
|
|
|