fixed
[gitmo/Moose.git] / t / lib / Bar.pm
CommitLineData
0e6614c3 1
2package Bar;
3use strict;
4use warnings;
5use Moose;
6
7type Baz => where { 1 };
8
9subtype Bling => as Baz => where { 1 };
10
111;