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

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

sub other_meth { }

no Moose;

1;