[w32file] Remove dead code
[mono.git] / mcs / errors / cs0134-4.cs
1 // CS0134: A constant `T.i' of reference type `decimal[]' can only be initialized with null
2 // Line: 12
3
4 class T
5 {
6         const decimal[] i = new decimal [] { 2m };
7 }