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

public class MyClass2
{
	static public bool b;
        static public void Main ()
        {
                object o;
                switch (b) {
		case true:
			o = "yo";
			break;
                }
        }
}
</string>
    <string>// CS0219: The variable `o' is assigned but its value is never used
// Line: 10
// Compiler options: -warn:3 -warnaserror

public class MyClass2
{
	static public bool b;
	static public void Main ()
	{
		object o;
		if (b)
			o = null;
	}
}
</string>
    <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>