{ %FAIL } {$mode objfpc} program tw38771; type TMyClass = class generic procedure DoThis(msg: T); generic procedure DoThat(msg: T); virtual; end; generic procedure TMyClass.DoThis(msg:T); begin specialize DoThat(msg); end; generic procedure TMyClass.DoThat(msg: T); begin end; begin end.