mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 10:09:36 +02:00
13 lines
137 B
ObjectPascal
13 lines
137 B
ObjectPascal
{ %norun }
|
|
{$mode delphi}
|
|
|
|
type
|
|
TObj = class
|
|
const
|
|
Val = 1;
|
|
V1: Integer = Val;
|
|
V2: Integer = TObj.Val;
|
|
end;
|
|
|
|
begin
|
|
end. |