Tuples not appearing in code completion

Hi,

I have this piece of code

namespace TuplesConsoleApplication;

uses
  Foundation;

type
  Program = class
  public

    class method Main(args: array of String): Int32;
    begin
      var Person: tuple of (Name: String, Age: Integer);
      Person := (Name := 'Peter', Age := 25);
      Person := ('Paul', 37);
      
      writeLn($'{Person.Name} ');
      Person.
    end;

  end;

end.

If I invoke code completion after Person., Name doesn’t appear in the dropdown

Cheers,
John

Thanks, logged as bugs://81728

bugs://81728 got closed with status fixed.