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

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

sub meth { my $error; 3 }

no Moose;

1;