﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0168</ErrorName>
  <Examples>
    <string>// cs0168.cs: 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>