projects
/
gitmo/Mouse.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
Add a tool to import tests
[gitmo/Mouse.git]
/
t
/
lib
/
Bar.pm
Commit
Line
Data
60ad2cb7
1
2
package Bar;
3
use Mouse;
4
use Mouse::Util::TypeConstraints;
5
6
type Baz => where { 1 };
7
8
subtype Bling => as Baz => where { 1 };
9
10
1;