17 lines
198 B
ObjectPascal
17 lines
198 B
ObjectPascal
|
|
type Class1<T,T1> = class
|
|||
|
|
procedure p;
|
|||
|
|
var
|
|||
|
|
A: record
|
|||
|
|
i: integer;
|
|||
|
|
jlocal0: record
|
|||
|
|
i: real;
|
|||
|
|
end;
|
|||
|
|
end;
|
|||
|
|
begin
|
|||
|
|
|
|||
|
|
end;
|
|||
|
|
end;
|
|||
|
|
|
|||
|
|
begin
|
|||
|
|
Assert(True)
|
|||
|
|
end.
|