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 TestApp::Controller::Action::Chained::Bar;

use strict;
use warnings;

use base qw/Catalyst::Controller/;

#
#   Redispatching between controllers that are not in a parent/child
#   relation. This is the root.
#
sub cross1 :PathPart('chained/cross') :CaptureArgs(1) :Chained('/') { }

1;