mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
21 lines
287 B
ObjectPascal
21 lines
287 B
ObjectPascal
program tw21593b;
|
|
|
|
{$MODE DELPHI}
|
|
|
|
type
|
|
TWrapper<T> = record
|
|
strict private
|
|
const Size = SizeOf(T); { Error: Illegal expression }
|
|
public
|
|
class procedure Test; static;
|
|
end;
|
|
|
|
class procedure TWrapper<T>.Test;
|
|
begin
|
|
Writeln(Size);
|
|
end;
|
|
|
|
begin
|
|
TWrapper<Byte>.Test;
|
|
end.
|