The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use TestCase::Minimal;

package TestCase::Destructor {
  has minimal : TestCase::Minimal;
  
  sub DESTROY($self : TestCase::Destructor) : void {
    $self->{minimal}{x} = 3;
  }
}