added failing test case for RT#47744
[gitmo/Mouse.git] / xt / external / lib / Foo.pm
CommitLineData
5d4df3f8 1package Foo;
2use Mouse;
3
4has foo => (
5 is => 'ro',
6 isa => 'Str',
7);
8
9has bar => (
10 is => 'ro',
11 isa => 'Str',
12);
13
14no Mouse;
15__PACKAGE__->meta->make_immutable;
16__END__
17
18=head1 NAME
19
20Foo - bar
21
22=head1 ATTRIBUTES
23
24=over 4
25
26=item foo
27
28=back
29
30=cut