Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs0133-2.cs
blobb7a37182d737cea238b6e7c7af0ba96570e04eab
1 // CS0133: The expression being assigned to `c' must be constant
2 // Line: 10
4 class C
6 void Foo ()
8 int[] array;
9 int idx;
10 const int c = array [idx];