The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package t::Object::Trivial;
use strict;

use Class::InsideOut;

sub new {
    Class::InsideOut::register( bless \(my $s), shift);
}

1;