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

cs0248.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fcfe0ac6e0570684e83c2b999f3f7bf4be87bc9 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0248.cs: Cannot create an array with a negative size
// Line: 6

public class MainClass {
        public static void Main () {
                byte[] byteArray = new byte[-1];
        }
}