[w32file] Remove dead code
[mono.git] / mcs / errors / cs1525-17.cs
1 // CS1525: Unexpected symbol `:', expecting `,', `;', or `='
2 // Line: 7
3
4 class X {
5         public static void Main ()
6         {
7                 int myarray:;
8         }
9 }