<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0110</ErrorName>
  <Examples>
    <string>// CS0110: The evaluation of the constant value for `A.B.C.X' involves a circular definition
// Line: 9

class A {
	int a;
	
	class B {
		int b;

		class C {
			int c;

			void m ()
			{
				c = 1;
			}

			enum F {
			    A, 
			    B,
			    C,
			    D = X,
			    E
			}

			const int X = Y + 1;
			const int Y = 1 + (int) F.E;
		}
	}

	static int Main (string [] args)
	{
		return 0;
	}

}
</string>
    <string>// CS0110: The evaluation of the constant value for `E.a' involves a circular definition
// Line: 6

enum E
{
	a = b,
	b = c,
	c = a
}
</string>
  </Examples>
</ErrorDocumentation>