Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0650.cs
blob1d5cff83d2b28e741f9c593532717188c58b419b
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
4 class X {
5 public static void Main ()
7 int myarray[2];