"Implement interface members" doesn't work in nested classes

Hi there,

if “Implement interface members” is selected from the menu, nothing is added to the class definition.
In Split-Mode the required methods are generated anyway. If i use the unified syntax, nothing is generated.

namespace ConsoleApplication563;

interface

type
  ISomeInterface = public interface
    method SomeMethod(someArg: Object);
  end;

  SomeClass = public class
  private
  public
  end;

  SomeNestedClass nested in SomeClass = public class(ISomeInterface)
  private
  public
  end;

  Program = class
  public

    class method Main(args: array of String): Int32;
    begin
      readLn;
    end;

  end;

implementation

method SomeClass.SomeNestedClass.SomeMethod(someArg: Object);
begin
  // autogenerated
end;

end.

Regards

Thanks, logged as bugs://85847

bugs://E25007 was closed as fixed.