my $value :Stashed = 1; #### $c->stash( value => 1 ); #### sub action : Chained('other_action') { my $value: Stashed; # # a bit of code using $value # my $value: Stashed = 1; } #### panic: Can't find SCALAR(0x3240d90) in the the caller's lexical pad #### "my" variable $value masks earlier declaration in same scope.