unit tw40293; {$mode objfpc}{$H+} interface type ftest1 = class private procedure setValue(value: specialize TArray); function getValue(): specialize TArray; end; implementation uses sysutils; // compile error if uncommented procedure ftest1.setValue(value: specialize TArray); begin end; function ftest1.getValue(): specialize TArray; begin end; end.