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

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

sub meth { my $error; }

no Moose;

1;