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

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

sub meth { $error }

no Moose;

1;