From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112131415161718 package Duplicate;use strict;use warnings;use Lexical::Attributes;has $.key is ro;has $.key;# has $.something;sub new { bless [] => shift;}1;__END__
package
Duplicate;
use
strict;
warnings;
Lexical::Attributes;
has
$.key is ro;
$.key;
# has $.something;
sub
new {
bless
[] =>
shift
;
}
1;
__END__