Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-Moose/t/lib/
Upload File :
Current File : //usr/share/doc/perl-Moose/t/lib/Bar.pm

package Bar;
use Moose;
use Moose::Util::TypeConstraints;

type Baz => where { 1 };

subtype Bling => as Baz => where { 1 };

1;