{ correct match functions with array parameters of the generic type } unit tgenfunc15; {$mode objfpc}{$H+} interface type generic TStaticArray = array[0..4] of T; TTest = class generic procedure Test(aArg1: T; aArg2: array of T; aArg3: specialize TStaticArray); generic procedure Test(aArg1: T; aArg2: array of T; aArg3: specialize TStaticArray; aArg4: LongInt); end; generic procedure Test(aArg1: T; aArg2: array of T; aArg3: specialize TStaticArray); generic procedure Test(aArg1: T; aArg2: array of T; aArg3: specialize TStaticArray; aArg4: LongInt); implementation generic procedure Test(aArg1: T; aArg2: array of T; aArg3: specialize TStaticArray); begin end; generic procedure Test(aArg1: T; aArg2: array of T; aArg3: specialize TStaticArray; aArg4: LongInt); begin end; generic procedure TTest.Test(aArg1: T; aArg2: array of T; aArg3: specialize TStaticArray); begin end; generic procedure TTest.Test(aArg1: T; aArg2: array of T; aArg3: specialize TStaticArray; aArg4: LongInt); begin end; var t: array[0..4] of LongInt = (0, 1, 2, 3, 4); s: array[0..4] of String = ('abc', 'def', 'ghi', 'jkl', 'mno'); initialization specialize Test(42, [32, 43], t); specialize Test('FPC', ['Hello', 'World'], s, 42); end.