projects
/
gitmo/Mouse.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
Checking in changes prior to tagging of version 0.40_08. Changelog diff is:
[gitmo/Mouse.git]
/
t
/
lib
/
MyMouseA.pm
Commit
Line
Data
4c98ebb0
1
package MyMouseA;
2
3
use Mouse;
4
5
has 'b' => (is => 'rw', isa => 'MyMouseB');
6
7
1;