Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0650.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da029f47178b2b99632fabb8e60151873203dc54 (plain)
1
2
3
4
5
6
7
8
9
// 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
// Line: 7

class X {
        public static void Main ()
        {
            int myarray[2];
        }
}