<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0168</ErrorName>
  <Examples>
    <string>// CS0168: The variable `y2' is declared but never used
// Line: 9
// Compiler options: -warn:3 -warnaserror

class CompilerBugDemo
{
	public static object Wrong()
	{
		object y2;
		return null;
	}
}</string>
    <string>// CS0168: The variable `e' is declared but never used
// Line: 10
// Compiler options: -warn:3 -warnaserror

using System;

public class ConsoleStub {
  public static void Main(string[] args) {
    try {
    } catch (Exception e) {
    }
  }
}

</string>
    <string>// CS0168: The variable `p' is declared but never used
// Line: 9
// Compiler options: -warn:3 -warnaserror

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