Tests showing we are not immutable at the end of the file, but we are as soon as...
[catagits/Catalyst-Runtime.git] / t / lib / TestPluginWithConstructor.pm
1 # See t/plugin_new_method_backcompat.t
2 package TestPluginWithConstructor;
3 use strict;
4 use warnings;
5 sub new {
6     my $class = shift;
7     return bless $_[0], $class;
8 }
9
10 1;
11