2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0650.cs
1 // cs0650.cs: Syntax error, bad array declarator. To declare a managed array the rank specifier precedes the variable's identifier. To declare a fixed buffer field, use the fixed keyword before the field type
2 // Line: 7
3
4 class X {
5         public static void Main ()
6         {
7             int myarray[2];
8         }
9 }