summaryrefslogtreecommitdiffstats
path: root/t/data/compile-error/before/Foo.pm
blob: 9faa961ee7f5afc30cca784e5043f845e6b6c707 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package Foo;
use Moose;

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

sub meth { 1 }

no Moose;

1;