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

use strict;
use warnings;

sub new {
    my $class = shift;
    return bless {} => $class;
}

package t::BrokenCookieJar2;

use strict;
use warnings;

sub new {
    my $class = shift;
    return bless {} => $class;
}

sub add {
}

1;