The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Test::Destructor {
  has x : int;
  has y : int;
  
  sub DESTROY($self : Test::Destructor) : void {
    std::println("DESTROY");
  }
}