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

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

sub other_other_meth { }

no Moose;

1;