summaryrefslogtreecommitdiff
path: root/tests/src/Regressions/coreclr/GitHub_22348/test22348.cs
blob: 383e575569e8d49a126f660aa2ceaee8cd5838f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;

public class Test22348
{
    public static int Main()
    {
        try
        {
            byte[,] tooBig = new byte[267784, 15351];
            tooBig[139893, 12] = 100;
            return (byte)tooBig.GetValue(139893, 12);
        }
        catch (OutOfMemoryException e)
        {
            Console.WriteLine(e);
        }
        
        return 100;
    }
}