<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0841</ErrorName>
  <Examples>
    <string>// CS0841: The variable `y' cannot be used before it is declared
// Line: 8

public class C
{
	public static void Main ()
	{
	    int x = y;
	    int y = 1;
	}
}</string>
    <string>// CS0841: The variable `y' cannot be used before it is declared
// Line: 8

public class C
{
	public static void Main ()
	{
	    const int x = y;
	    const int y = 1;
	}
}
</string>
  </Examples>
</ErrorDocumentation>