summaryrefslogtreecommitdiffstats
path: root/t/data/other-api/after/Foo/Bar.pm
blob: 973e4736f78b2ac753f363d58252ee63e94ab367 (plain) (blame)
1
2
3
4
5
6
7
8
9
package Foo::Bar;
use Moose;

sub other_meth { }

__PACKAGE__->meta->make_immutable;
no Moose;

1;