Fail with namespace::autoclean
[gitmo/Moo.git] / xt / lib / withautoclean / Class.pm
1 package withautoclean::Class;
2 use Moo;
3
4 with 'withautoclean::R1';
5
6 before _clear_ctx => sub {
7 };
8
9 1;
10