<?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>CS0133</ErrorName>
  <Examples>
    <string>// cs0133-2.cs: The expression being assigned to `S.pathName' must be constant
// Line: 12
// Compiler options: -unsafe

class C
{
    public static int i = 4;
}

public unsafe struct S
{
    private fixed char pathName [C.i];
}
</string>
    <string>// cs0133-3.cs: The expression being assigned to `Foo' must be constant
// Line: 12

class T
{
    public void FooBar ()
    {
        const string Foo = Foo;
    }
}
</string>
    <string>// cs0133-4.cs: The expression being assigned to `Program.y' must be constant
// Line: 12

class Program {
	int x;
	const int y = x;
}
</string>
    <string>// cs0133-5.cs: The expression being assigned to `T.i' must be constant
// Line: 12

class T
{
	const decimal[] i = new decimal [] { 2m };
}
</string>
    <string>// cs0133.cs: The expression being assigned to `x' must be constant
// Line: 6
class X {
	X (int arg)
	{
		const int x = arg;
	}
}
</string>
  </Examples>
</ErrorDocumentation>