COBCH1783 '<型名>' には推測可能な汎用パラメーター型のある可視インスタンス メソッド '<メソッド名>' がない

推定可能な汎用パラメーター型のあるメソッドが見つかりません。汎用パラメーターを明示的に指定すると解決する場合があります。コンテキストから、必要なメソッドはインスタンス メソッドになります。
      $set sourceformat(variable)
       class-id Main.
       
       method-id M static.
           declare o = new Main
           invoke o::GenericMethod(1, 1)                  *> This line causes an error
           invoke o::GenericMethod[binary-long](1, 1)     *> This line does not
       end method.
       
       method-id GenericMethod using T (p1 as binary-long, p2 as binary-long).
           display p1 space p2
           goback
       end method.
       
       end class.