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

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

sub other_meth { }

__PACKAGE__->meta->make_immutable;
no Moose;

1;