<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1589</ErrorName>
  <Examples>
    <string>// CS1589: Unable to include XML fragment `/foo/bar' of file `there-is-no-such-file'. Could not find file "*PATH*/there-is-no-such-file"
// Line: 12
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// blah
   public class Test
   {
	// warning
	/// &lt;include file='there-is-no-such-file' path='/foo/bar' /&gt;
	public void Baz (int x)
	{
	}
   }
}

</string>
    <string>// CS1589: Unable to include XML fragment `/root/@attr' of file `cs1589.inc'. The specified node cannot be inserted as the valid child of this node, because the specified node is the wrong type
// Line: 15
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// &lt;include file='cs1589.inc' path='/foo' /&gt;
   public class Test
   {
	public static void Main ()
	{
	}

	/// &lt;include file='cs1589.inc' path='/root/@attr'/&gt;
	public string S3;
   }
}

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