mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
14 lines
174 B
ObjectPascal
14 lines
174 B
ObjectPascal
program Project1;
|
|
{$mode objfpc}{$H+}
|
|
const
|
|
ts=3;
|
|
type
|
|
generic GTest<T>=record
|
|
case byte of
|
|
0:(ta:array [0..2] of T);
|
|
1:(t1:T;t2:T;t3:T);
|
|
end;
|
|
|
|
begin
|
|
end.
|