summaryrefslogtreecommitdiffstats
path: root/t/data/moose-late-load/after/Foo/Immutable.pm
blob: 89e7e7a29f255ead6b06c8407f05de4269d35b51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package Foo::Immutable;
use Moose;

has baz => (is => 'ro');

sub other_other_meth { }

__PACKAGE__->meta->make_immutable;
no Moose;

1;