Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

class CompileError::String::CharacterAssign {
static method main : int () {
my $string = "abc";
$string->[0] = 'd';
}
}