Flyover hint claims class/instance vars as local vars

I created a new WPF application and put this in Window1.xaml.pas:

type
  Window1 = public partial class(System.Windows.Window)
  private
    class var ClassVar: Integer;
    InstanceVar: Integer;
    method InstanceMethod;
  public
    constructor;
  end;
  
implementation

constructor Window1;
begin
  InitializeComponent();
end;

method Window1.InstanceMethod;
begin
  InstanceVar := 1; 
  ClassVar := 1;
end;

The flyover hint for both InstanceVar and ClassVar both claim “(local variable)”.

Thanks, logged as bugs://66071: Flyover hint claims class/instance vars as local vars

bugs://66071 got closed with status wontfix.

should have been fixed already.