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