<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1590</ErrorName>
  <Examples>
    <string>// CS1590: Invalid XML `include' element. Missing `path' attribute
// Line: 11
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// comment
   public class Test
   {
	/// &lt;include file='a' /&gt;
	public static void Main ()
	{
	}
   }
}

</string>
    <string>// CS1590: Invalid XML `include' element. Missing `file' attribute
// Line: 16
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// comment
   public class Test
   {
	/// comment
	public static void Main ()
	{
	}

	/// &lt;include path='/foo/bar' /&gt;
	public void Bar (int x)
	{
	}
   }
}

</string>
    <string>// CS1590: Invalid XML `include' element. Missing `file' attribute
// Line: 8
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// &lt;include/&gt;
   public class Test
   {
   }
}

</string>
  </Examples>
</ErrorDocumentation>