New test.
[mono.git] / mcs / errors / cs0133-4.cs
1 // cs0133-4.cs: The expression being assigned to `Program.y' must be constant
2 // Line: 12
3
4 class Program {
5         int x;
6         const int y = x;
7 }