<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1576</ErrorName>
  <Examples>
    <string>// CS1576: The line number specified for #line directive is missing or invalid
// Line: 4

#line 0
</string>
    <string>// CS1576: The line number specified for #line directive is missing or invalid
// Line: 4

#line -9
</string>
    <string>// CS1576: The line number specified for #line directive is missing or invalid
// Line: 4

#line
</string>
    <string>// CS1576: The line number specified for #line directive is missing or invalid
// Line: 8

public struct S
{
   static void Main()
   {
      #line "error"
   }
}
</string>
  </Examples>
</ErrorDocumentation>