<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8345</ErrorName>
  <Examples>
    <string>// CS8345: Field or auto-implemented property cannot be of type `S' unless it is an instance member of a ref struct
// Line: 11
// Compiler options: -langversion:latest

public ref struct S
{
}

struct Test
{
	S field;
}</string>
    <string>// CS8345: Field or auto-implemented property cannot be of type `S' unless it is an instance member of a ref struct
// Line: 11
// Compiler options: -langversion:latest

public ref struct S
{
}

ref struct Test
{
	static S field;
}</string>
  </Examples>
</ErrorDocumentation>