Oxygene: can't reference an inherited method with a generic parameter type

Hello,
Test case (.NET Standard 2.0 class library): ClassLibrary1.zip (5.8 KB)

namespace ClassLibrary1;

interface

  type

    /// <summary>
    /// 
    /// </summary>
    /// <typeparam name="TItem"></typeparam>
    Base <TItem> = public class

    public

      /// <summary>
      /// 
      /// </summary>
      /// <param name="Value"></param>
      method DoSomething (Value : TItem);
        empty;

    end;


    /// <summary>
    ///   <see cref="DoSomething(TItem)" />
    /// </summary>
    /// <typeparam name="TItem"></typeparam>
    Derived <TItem> = public class (
      Base <TItem>
    )
    end;

implementation

end.

Compile:

Class1.pas(25,9): warning W18: Unable to resolve XmlDoc tag “see cref” for “DoSomething”

Thanks, logged as bugs://85098

bugs://85098 got closed with status fixed.