[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0650.cs
1 // CS0650: Syntax error, bad array declarator. To declare a managed array the rank specifier precedes the variable's identifier. To declare a fixed size 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 }