<?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>CS0414</ErrorName>
  <Examples>
    <string>// cs0414.cs: The private field `X.i' is assigned but its value is never used
// Line: 6
// Compiler options: -warnaserror -warn:3

class X {
	int i = 3;
	
	public void Y ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>