package TestCase::CompileError::Assign::ConstToNoConst {

  sub main : int () {
    {
      my $str1_const : const byte[] = new byte[3];
      my $str2 : byte[] = $str1_const;
    }
  }
}