<?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>CS0133</ErrorName>
  <Examples>
    <string>// CS0133: The expression being assigned to `c' must be constant
// Line: 10

class C
{
	void Foo ()
	{
		int[] array;
		int idx;
		const int c = array [idx];
	}
}
</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-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.cs: The expression being assigned to `x' must be constant
// Line: 6
class X {
	X (int arg)
	{
		const int x = arg;
	}
}
</string>
  </Examples>
</ErrorDocumentation>