<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8340</ErrorName>
  <Examples>
    <string>// CS8340: `S.field': Instance fields in readonly structs must be readonly
// Line: 6
// Compiler options: -langversion:latest

readonly struct S
{
	int field;
}</string>
    <string>// CS8340: `S.field': Instance fields in readonly structs must be readonly
// Line: 6
// Compiler options: -langversion:latest

readonly partial struct S
{

}

partial struct S
{
	int field;
}</string>
  </Examples>
</ErrorDocumentation>