The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

package C3NT;

{
    package C3NT::Foo;

    sub new { return bless {} => shift }

    sub basic        { 42 }
    sub c3_then_next { 21 }
    sub next_then_c3 { 22 }
}

{
    package C3NT::Bar;

    use base qw/C3NT::Foo/;

    sub basic               { shift->NEXT::basic                       }
    sub next_then_c3        { shift->next::method                      }
    sub actual_fail_halfway { shift->NEXT::ACTUAL::actual_fail_halfway }
}

{
    package C3NT::Baz;

    use base qw/C3NT::Foo/;

    sub basic        { shift->NEXT::basic        }
    sub c3_then_next { shift->NEXT::c3_then_next }
}

{
    package C3NT::Quux;

    use base qw/C3NT::Bar C3NT::Baz/;

    sub basic               { shift->NEXT::basic                       }
    sub non_exist           { shift->NEXT::non_exist                   }
    sub non_exist_actual    { shift->NEXT::ACTUAL::non_exist_actual    }
    sub actual_fail_halfway { shift->NEXT::ACTUAL::actual_fail_halfway }
    sub c3_then_next        { shift->next::method                      }
    sub next_then_c3        { shift->NEXT::next_then_c3                }
}

{
    package C3NT::Child;

    use base qw/C3NT::Quux/;
}

1;