pascalabcnet/TestSuite/ToMatrixArrOfArrT.pas

9 lines
156 B
ObjectPascal
Raw Permalink Normal View History

2020-05-28 22:09:01 +03:00
procedure ToMatrix<T>(Self: array of array of T); extensionmethod;
begin
Assert(2=2)
end;
begin
var a: array of array of integer;
a.ToMatrix;
end.