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

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

sub meth { $error; 2 }

no Moose;

1;