<?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>CS0841</ErrorName>
  <Examples>
    <string>// CS0841: A local 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: A local variable `y' cannot be used before it is declared
// Line: 8

class X
{
   static void y () { }
   static void Main () {
     y ();
     int y = 5;
   }
}
</string>
    <string>// CS0841: A local variable `v' cannot be used before it is declared
// Line: 9


public class Test
{
	static void Main ()
	{
		var v = ++v;
	}
}

</string>
    <string>// CS0841: A local 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>