summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b82048/b82048.cs
blob: b3e43d131f9272d43d4b7caf0eb8d92cd8a4dc2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;

public struct AA
{
    public static sbyte m_suFwd3;

    public static int Main()
    {
        bool local9 = false;
        sbyte local11 = m_suFwd3;
        if (local9)
        {
            while (local9)
            {
                while (local9)
                    m_suFwd3 = 0;
            }
        }
        else
        {
            while (local9)
                throw new Exception();
            return 100;
        }
        try
        {
        }
        finally
        {
            if (local9)
                throw new IndexOutOfRangeException();
        }
        return 102;
    }
}