<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0219</ErrorName>
  <Examples>
    <string>// cs0219.cs: The variable `p' is assigned but its value is never used
// Line: 9
// Compiler options: -warn:3 -warnaserror

class Main
{
   public void Method (int i)
   {
       long p = -9;
   }
}
</string>
  </Examples>
</ErrorDocumentation>