The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package TestPluginMRO;

use strict;
use warnings;

use mro 'c3';

use Dancer ':syntax';
use Dancer::Plugin;

use base qw(Data::Dumper);

register some_other_plugin_keyword => sub {
    42;
};

register_plugin;
1;