<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0844</ErrorName>
  <Examples>
    <string>// CS0844: A local variable `s' cannot be used before it is declared. Consider renaming the local variable when it hides the member `C.s'
// Line: 10

class C
{
	string s {
		set {}
	}

	public void Test ()
	{
		s = "x";
		string s = "a";
	}
}
</string>
    <string>// CS0844: A local variable `s' cannot be used before it is declared. Consider renaming the local variable when it hides the member `C.s'
// Line: 10

class C
{
	const string s = "s";

	public void Test ()
	{
		s = "x";
		string s = "a";
	}
}
</string>
    <string>// CS0844: A local variable `s' cannot be used before it is declared. Consider renaming the local variable when it hides the member `C.s'
// Line: 10

class C
{
	string s;

	public void Test ()
	{
		s = "x";
		string s = "a";
	}
}
</string>
    <string>// CS0844: A local variable `y' cannot be used before it is declared. Consider renaming the local variable when it hides the member `X.y'
// Line: 8

class X
{
	static int y;
	static void Main () {
		y = 10;
		int y = 5;
	}
}
</string>
    <string>// CS0844: A local variable `top' cannot be used before it is declared. Consider renaming the local variable when it hides the member `X.top'
// Line: 17

class Symbol
{
}

class X
{
	Symbol top;

	internal int Enter (Symbol key, object value)
	{
		if (key != null) {
			top = key;
		}
		object top = null;
		return top.Count;
	}
}
</string>
  </Examples>
</ErrorDocumentation>