<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0573</ErrorName>
  <Examples>
    <string>// CS0573: 'S': Structs cannot have instance property or field initializers
// Line: 6

struct S
{
	public int Prop { get; set; } = 3;
}
</string>
    <string>// CS0573: 'S': Structs cannot have instance property or field initializers
// Line: 6

struct S
{
	int v = 0;
}
</string>
    <string>// CS0573: 'S': Structs cannot have instance property or field initializers
// Line: 8

using System;

struct S
{
	event Action E = null;
}</string>
  </Examples>
</ErrorDocumentation>