Changelogging
[gitmo/Mouse.git] / t / lib / Bar7 / Meta / Trait2.pm
CommitLineData
fde8e43f 1package Bar7::Meta::Trait2;
2# This is automatically generated by author/import-moose-test.pl.
3# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4use t::lib::MooseCompat;
5use Mouse::Role;
6
7has foo => (
8 traits => ['Array'],
9 handles => {
10 push_foo => 'push',
11 },
12);
13
14no Mouse::Role;
15
161;