<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0169</ErrorName>
  <Examples>
    <string>// CS0169: The private field `X.x' is never used
// Line: 4
// Compiler options: -warnaserror -warn:4

class X {
	int x;

	static void Main () {}
}
</string>
    <string>// CS0169: The private field `Foo.Bar.a' is never used
// Line: 9
// Compiler options: -warnaserror -warn:4

class Foo
{
	class Bar
	{
		int a;
	}
}
</string>
  </Examples>
</ErrorDocumentation>