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